diff --git a/src/components/Typography/Typography.stories.tsx b/src/components/Typography/Typography.stories.tsx new file mode 100644 index 0000000..a3876a4 --- /dev/null +++ b/src/components/Typography/Typography.stories.tsx @@ -0,0 +1,25 @@ +import { ComponentStory, ComponentMeta } from '@storybook/react'; + +import { Typography } from './Typography'; + +export default { + component: Typography, +} as ComponentMeta; + +//“template” of how args map to rendering +const Template: ComponentStory = (args) => ( + + + + + + +
+); + +export const Default = Template.bind({}); + +Default.args = { + children: 'This is a Typography', + variant: 'h2', +};