aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/layout/page-footer.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/layout/page-footer.stories.tsx')
-rw-r--r--src/components/molecules/layout/page-footer.stories.tsx57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/components/molecules/layout/page-footer.stories.tsx b/src/components/molecules/layout/page-footer.stories.tsx
deleted file mode 100644
index 994e888..0000000
--- a/src/components/molecules/layout/page-footer.stories.tsx
+++ /dev/null
@@ -1,57 +0,0 @@
-import type { ComponentMeta, ComponentStory } from '@storybook/react';
-import { Link } from '../../atoms';
-import { MetaItem, MetaList } from '../meta-list';
-import { PageFooter as PageFooterComponent } from './page-footer';
-
-/**
- * Page Footer - Storybook Meta
- */
-export default {
- title: 'Molecules/Layout',
- component: PageFooterComponent,
- argTypes: {
- className: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the footer element.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- meta: {
- description: 'The page meta.',
- table: {
- category: 'Options',
- },
- type: {
- name: 'object',
- required: false,
- value: {},
- },
- },
- },
-} as ComponentMeta<typeof PageFooterComponent>;
-
-const Template: ComponentStory<typeof PageFooterComponent> = (args) => (
- <PageFooterComponent {...args} />
-);
-
-/**
- * Page Footer Stories - With meta
- */
-export const PageFooter = Template.bind({});
-PageFooter.args = {
- children: (
- <MetaList>
- <MetaItem
- label="More posts about:"
- value={<Link href="#topic1">Topic name</Link>}
- />
- </MetaList>
- ),
-};