mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
171 B
Ruby
8 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HelpModalComponent < ModalComponent
|
|
def initialize(id:, close_button: true)
|
|
super(id: id, close_button: close_button)
|
|
end
|
|
end
|