optimizely-oui
Version:
Optimizely's Component Library.
15 lines • 504 B
JavaScript
import React from "react";
import { storiesOf } from "@storybook/react";
import { withKnobs } from "@storybook/addon-knobs";
import ProgressDots from "./index.js";
var stories = storiesOf("Status Indicators|ProgressDots", module);
stories.addDecorator(withKnobs).addDecorator(function (story) {
return React.createElement("div", {
id: "root-preview"
}, story());
});
stories.add("Default", function () {
return React.createElement(ProgressDots, {
testSection: "test-progress-dots"
});
});