import * as React from "react"; import { storiesOf } from "@storybook/react"; import Examples from "../../storybook-components/Examples"; import Story from "../../storybook-components/Story"; import { Panel } from "./Panel"; const stories = storiesOf("Components/Layout/Panel", module); stories.add("Default", () => ( This is the default Panel component This is the Panel component with only a top border This is the Panel component with only a bottom border This is the Panel component without a background ));