import React from "react"; import { storiesOf } from "@storybook/react"; import Examples from "../../storybook-components/Examples"; import Story from "../../storybook-components/Story"; import { Box } from "../Box"; import { SmallCaps } from "../SmallCaps"; import { Heading } from "./Heading"; const stories = storiesOf("Components/Typography/Heading", module); stories.add("Default", () => ( Heading 1 The quick brown fox jumps over the lazy dog Heading 2 The quick brown fox jumps over the lazy dog Heading 3 The quick brown fox jumps over the lazy dog Heading 4 The quick brown fox jumps over the lazy dog Heading 5 The quick brown fox jumps over the lazy dog Heading 6 The quick brown fox jumps over the lazy dog ));