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