aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/footer.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-09-27 18:43:25 +0200
committerArmand Philippot <git@armandphilippot.com>2023-10-24 12:25:00 +0200
commitd17d894f398650209c0ddd29502308de8c07bd93 (patch)
tree858402dfd362e74686d25fec155f247ad3217635 /src/components/organisms/layout/footer.stories.tsx
parent7255d25f6834a208c0ed44636356cc260f6ab6ba (diff)
feat(components): add Article, Aside, Footer, Header, Main & Nav
Some components have been renamed to be able to create Footer, Header and Nav.
Diffstat (limited to 'src/components/organisms/layout/footer.stories.tsx')
-rw-r--r--src/components/organisms/layout/footer.stories.tsx90
1 files changed, 0 insertions, 90 deletions
diff --git a/src/components/organisms/layout/footer.stories.tsx b/src/components/organisms/layout/footer.stories.tsx
deleted file mode 100644
index b5097dd..0000000
--- a/src/components/organisms/layout/footer.stories.tsx
+++ /dev/null
@@ -1,90 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Footer as FooterComponent } from './footer';
-
-/**
- * Footer - Storybook Meta
- */
-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',
- },
- description: 'Set additional classnames to the footer element.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- copyright: {
- description: 'The copyright information.',
- type: {
- name: 'object',
- required: true,
- value: {},
- },
- },
- navItems: {
- description: 'The footer nav items.',
- table: {
- category: 'Options',
- },
- type: {
- name: 'object',
- required: false,
- value: {},
- },
- },
- topId: {
- control: {
- type: 'text',
- },
- description:
- 'An element id (without hashtag) used as target by back to top button.',
- type: {
- name: 'string',
- required: true,
- },
- },
- },
-} as ComponentMeta<typeof FooterComponent>;
-
-const Template: ComponentStory<typeof FooterComponent> = (args) => (
- <FooterComponent {...args} />
-);
-
-const copyright = {
- dates: { start: '2017', end: '2022' },
- owner: 'Lorem ipsum',
- icon: 'CC',
-};
-
-const navItems = [{ id: 'legal-notice', href: '#', label: 'Legal notice' }];
-
-/**
- * Layout Stories - Footer
- */
-export const Footer = Template.bind({});
-Footer.args = {
- copyright,
- navItems,
- topId: 'top',
-};