mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-11 23:17:48 +00:00
9 lines
180 B
Ruby
9 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ShipOrderComponent < ViewComponent::Base
|
|
def initialize(order:, current_page:)
|
|
@order = order
|
|
@current_page = current_page
|
|
end
|
|
end
|