diff options
Diffstat (limited to 'src/components/organisms/layout/footer.stories.tsx')
| -rw-r--r-- | src/components/organisms/layout/footer.stories.tsx | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/src/components/organisms/layout/footer.stories.tsx b/src/components/organisms/layout/footer.stories.tsx index 06819da..bd5a744 100644 --- a/src/components/organisms/layout/footer.stories.tsx +++ b/src/components/organisms/layout/footer.stories.tsx @@ -1,5 +1,4 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'; -import { IntlProvider } from 'react-intl'; import FooterComponent from './footer'; /** @@ -9,6 +8,19 @@ export default { title: 'Organisms/Layout', component: FooterComponent, argTypes: { + backToTopClassName: { + control: { + type: 'text', + }, + description: 'Set additional classnames to the back to top button.', + table: { + category: 'Styles', + }, + type: { + name: 'string', + required: false, + }, + }, className: { control: { type: 'text', @@ -53,13 +65,6 @@ export default { }, }, }, - decorators: [ - (Story) => ( - <IntlProvider locale="en"> - <Story /> - </IntlProvider> - ), - ], } as ComponentMeta<typeof FooterComponent>; const Template: ComponentStory<typeof FooterComponent> = (args) => ( |
