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 • 394 B
JavaScript
import React from "react";
import { storiesOf } from "@storybook/react";
import { Click } from "../../index";
import { render } from "../../../stories/render";
storiesOf("Click", module).addDecorator(render).addWithJSX("unstyled", function () {
return React.createElement(Click, {
onClick: function onClick() {
alert("Hello!");
}
}, "This is a clickable unstyled button");
});