diff options
Diffstat (limited to 'src/components/atoms/layout/nav/nav.stories.tsx')
| -rw-r--r-- | src/components/atoms/layout/nav/nav.stories.tsx | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/components/atoms/layout/nav/nav.stories.tsx b/src/components/atoms/layout/nav/nav.stories.tsx new file mode 100644 index 0000000..5649abf --- /dev/null +++ b/src/components/atoms/layout/nav/nav.stories.tsx @@ -0,0 +1,34 @@ +import type { ComponentMeta, ComponentStory } from '@storybook/react'; +import { Nav as NavComponent } from './nav'; + +/** + * Nav - Storybook Meta + */ +export default { + title: 'Atoms/Layout', + component: NavComponent, + argTypes: { + children: { + control: { + type: 'text', + }, + description: 'The contents.', + type: { + name: 'string', + required: true, + }, + }, + }, +} as ComponentMeta<typeof NavComponent>; + +const Template: ComponentStory<typeof NavComponent> = (args) => ( + <NavComponent {...args} /> +); + +/** + * Layout Stories - Nav + */ +export const Nav = Template.bind({}); +Nav.args = { + children: 'The nav content.', +}; |
