import React from 'react'; import { storiesOf } from '@storybook/react'; import { Link } from 'asc-web-components'; import Readme from './README.md'; import { text, boolean, withKnobs, select, number } from '@storybook/addon-knobs/react'; import withReadme from 'storybook-readme/with-readme'; import Section from '../../../.storybook/decorators/section'; import { Col } from 'reactstrap'; import { action } from '@storybook/addon-actions'; const type = ['action', 'page']; const colors = ['black', 'gray', 'blue']; const target = ['_blank', '_self', '_parent', '_top']; function clickActionLink(e) { action('actionClick')(e); } storiesOf('Components|Link', module) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add('base', () => (
{text('text', 'Simple link')}
) );