mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
16 lines
286 B
Ruby
16 lines
286 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ExampleComponentStories < ViewComponent::Storybook::Stories
|
|
story(:with_short_text) do
|
|
controls do
|
|
text(:title, 'OK')
|
|
end
|
|
end
|
|
|
|
story(:with_long_text) do
|
|
controls do
|
|
text(:title, 'This is a long text')
|
|
end
|
|
end
|
|
end
|