blob: afb5317c0e7479bad2934f0f7ae2f215f4e6f320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import LogoComponent from './logo';
export default {
title: 'Atoms/Images',
component: LogoComponent,
} as ComponentMeta<typeof LogoComponent>;
const Template: ComponentStory<typeof LogoComponent> = (args) => (
<LogoComponent {...args} />
);
export const Logo = Template.bind({});
|