Skip to content

Commit

Permalink
fix: add storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
PahaN47 committed Feb 3, 2025
1 parent 21f8b82 commit 753de21
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/BrandFooter/__stories__/BrandFooter.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from 'react';

import {Meta, StoryFn} from '@storybook/react';

import {ClassNameProps} from '../../../models';
import BrandFooter from '../BrandFooter';

export default {
title: 'Components/BrandFooter',
component: BrandFooter,
} as Meta;

export const Default: StoryFn<ClassNameProps> = (args) => <BrandFooter {...args} />;

Default.args = {};

0 comments on commit 753de21

Please sign in to comment.