import React from "react"; import { storiesOf } from "@storybook/react"; import { withKnobs } from "@storybook/addon-knobs"; import SummaryBar from "./index"; const stories = storiesOf("Data Organization|SummaryBar", module); stories.addDecorator(withKnobs).addDecorator(story =>
{story()}
); stories.add("Bar with mixed content", () => { return (
); }); stories.add("Summary bar with tooltips", () => { return (
); }); stories.add("Bar with empty col", () => { return (
); });