aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/toolbar/toolbar.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-14 22:30:45 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-14 22:34:43 +0200
commit894621cbf347485010de612b0f7fec74bdd26778 (patch)
treeae552e096d5db104594be2a7a6ebc86a99d0642e /src/components/organisms/toolbar/toolbar.stories.tsx
parent88b575b0d81e97531b70e90c1e124719b547614b (diff)
chore: add a Toolbar component
Diffstat (limited to 'src/components/organisms/toolbar/toolbar.stories.tsx')
-rw-r--r--src/components/organisms/toolbar/toolbar.stories.tsx26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/components/organisms/toolbar/toolbar.stories.tsx b/src/components/organisms/toolbar/toolbar.stories.tsx
new file mode 100644
index 0000000..75d70d8
--- /dev/null
+++ b/src/components/organisms/toolbar/toolbar.stories.tsx
@@ -0,0 +1,26 @@
+import { ComponentMeta, ComponentStory } from '@storybook/react';
+import { IntlProvider } from 'react-intl';
+import ToolbarComponent from './toolbar';
+
+export default {
+ title: 'Organisms/Toolbar',
+ component: ToolbarComponent,
+} as ComponentMeta<typeof ToolbarComponent>;
+
+const Template: ComponentStory<typeof ToolbarComponent> = (args) => (
+ <IntlProvider locale="en">
+ <ToolbarComponent {...args} />
+ </IntlProvider>
+);
+
+const nav = [
+ { id: 'home-link', href: '#', label: 'Home' },
+ { id: 'blog-link', href: '#', label: 'Blog' },
+ { id: 'cv-link', href: '#', label: 'CV' },
+ { id: 'contact-link', href: '#', label: 'Contact' },
+];
+
+export const Toolbar = Template.bind({});
+Toolbar.args = {
+ nav,
+};