mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
- With command: `rails generate component Example title --sidecar` - Delete generated spec file
8 lines
130 B
Ruby
8 lines
130 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ExampleComponent < ViewComponent::Base
|
|
def initialize(title:)
|
|
@title = title
|
|
end
|
|
end
|