import { ComponentMeta, ComponentStory } from '@storybook/react'; import Typography from './Typography'; export default { title: 'Typography', component: Typography, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); export const TypographyExample = Template.bind({}); TypographyExample.args = { children: '' };