mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-10 23:07:47 +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
|