import React from "react"; import { storiesOf } from "@storybook/react"; import withReadme from "storybook-readme/with-readme"; import Readme from "./README.md"; import { withKnobs, number, text } from "@storybook/addon-knobs/react"; import ProgressBar from "./"; storiesOf("Components|ProgressBar", module) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add("base", () => ( ));