From c21a137e1991af1331fe5768fc6bac15ea9230b1 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 25 Oct 2023 17:23:53 +0200 Subject: refactor(components): extract MainNav component from toolbar --- .../organisms/nav/main-nav/main-nav.stories.tsx | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/components/organisms/nav/main-nav/main-nav.stories.tsx (limited to 'src/components/organisms/nav/main-nav/main-nav.stories.tsx') diff --git a/src/components/organisms/nav/main-nav/main-nav.stories.tsx b/src/components/organisms/nav/main-nav/main-nav.stories.tsx new file mode 100644 index 0000000..6333f2c --- /dev/null +++ b/src/components/organisms/nav/main-nav/main-nav.stories.tsx @@ -0,0 +1,71 @@ +import type { ComponentMeta, ComponentStory } from '@storybook/react'; +import { Icon } from '../../../atoms'; +import { MainNav } from './main-nav'; + +/** + * MainNav - Storybook Meta + */ +export default { + title: 'Organisms/Nav/MainNav', + component: MainNav, + argTypes: { + items: { + description: 'The main nav items.', + type: { + name: 'object', + required: true, + value: {}, + }, + }, + }, +} as ComponentMeta; + +const Template: ComponentStory = (args) => ( + +); + +/** + * MainNav Stories - Default + */ +export const Default = Template.bind({}); +Default.args = { + items: [ + { id: 'home', label: 'Home', href: '#home' }, + { id: 'blog', label: 'Blog', href: '#blog' }, + { id: 'projects', label: 'Projects', href: '#projects' }, + { id: 'contact', label: 'Contact', href: '#contact' }, + ], +}; + +/** + * MainNav Stories - WithLogo + */ +export const WithLogo = Template.bind({}); +WithLogo.args = { + items: [ + { + id: 'home', + label: 'Home', + href: '#home', + logo: , + }, + { + id: 'blog', + label: 'Blog', + href: '#blog', + logo: , + }, + { + id: 'projects', + label: 'Projects', + href: '#projects', + logo: , + }, + { + id: 'contact', + label: 'Contact', + href: '#contact', + logo: , + }, + ], +}; -- cgit v1.2.3