vcc-ui
Version:
VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.
11 lines • 395 B
JavaScript
import React from "react";
import { storiesOf } from "@storybook/react";
import { Checkbox } from ".";
import { render } from "../../../stories/render";
storiesOf("Checkbox", module).addDecorator(render).addWithJSX("Unchecked", function () {
return React.createElement(Checkbox, null);
}).addWithJSX("Checked", function () {
return React.createElement(Checkbox, {
checked: true
});
});