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.
10 lines • 363 B
JavaScript
import React from "react";
import { storiesOf } from "@storybook/react";
import { Footer } from "../../index";
import { render } from "../../../stories/render";
import { footerMockData } from "./mock-data";
storiesOf("Footer", module).addDecorator(render).addWithJSX("basic", function () {
return React.createElement(Footer, {
data: footerMockData
});
});