Files
openfoodnetwork/app/components/distributor_title_component.rb
Jean-Baptiste Bellet 4781d6cc84 Add new (and first) component: DistributorTitle
- Simple wrapper around `<h3 />` for distributor title, used in the shop front
2021-04-22 15:08:54 +02:00

8 lines
136 B
Ruby

# frozen_string_literal: true
class DistributorTitleComponent < ViewComponent::Base
def initialize(name:)
@name = name
end
end