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 • 397 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import { boolean } from '@storybook/addon-knobs';
import { Link } from './';
storiesOf('Actions/Link', module).addWithJSX('With Arrow', function () {
return React.createElement(Link, {
href: "http://www.volvocars.com/",
arrow: "right",
disabled: boolean('disabled', false)
}, "This is a link component");
});