mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
10 lines
224 B
Ruby
10 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MultipleCheckedSelectComponent < ViewComponent::Base
|
|
def initialize(name:, options:, selected:)
|
|
@name = name
|
|
@options = options
|
|
@selected = selected.map(&:to_sym)
|
|
end
|
|
end
|