import React from 'react'; import { storiesOf } from '@storybook/react'; import { Link, DropDown } from 'asc-web-components'; import Readme from './README.md'; import {text, boolean, withKnobs, select } from '@storybook/addon-knobs/react'; import withReadme from 'storybook-readme/with-readme'; import Section from '../../../.storybook/decorators/section'; const type = ['action', 'page']; const colors = ['black', 'gray', 'blue', 'filter', 'profile']; const target = ['_blank', '_self', '_parent', '_top']; const dropdownType = ['filter', 'menu', 'none']; const dropdownColor = ['filter', 'profile', 'sorting','number','email', 'group']; storiesOf('Components|Link', module) .addDecorator(withKnobs) .addDecorator(withReadme(Readme)) .add('base', () => (
Simple link
));