UNPKG

react-bootstrap-typeahead

Version:
30 lines (29 loc) 748 B
import React from 'react'; import Token from './Token'; import { noop } from '../../utils'; export default { title: 'Components/Token', component: Token, }; const Template = (args) => React.createElement(Token, { ...args }); export const Interactive = Template.bind({}); Interactive.args = { children: 'This is an interactive token', onRemove: noop, }; export const Static = Template.bind({}); Static.args = { children: 'This is a static token', readOnly: true, }; export const Anchor = Template.bind({}); Anchor.args = { children: 'This is a link token', href: '#', readOnly: true, }; export const Disabled = Template.bind({}); Disabled.args = { children: 'This is a disabled token', disabled: true, };