import React from "react"; import { storiesOf } from "@storybook/react"; import { Typography } from "../Typography/typography"; const storiesForRow = storiesOf("Informational|Typography", module); storiesForRow.addDecorator(story =>
{story()}
); storiesForRow.add("Default", () => { return ( <> Header 1 Header 2 Header 3 Header 4 Header 5 Subhead Body Caption xs xxs ); });