import { storiesOf, html } from '@open-wc/demoing-storybook';
import '../lion-option.js';
storiesOf('Forms|Option', module)
.add(
'States',
() => html`
Default
Disabled
With html
and multi Line
`,
)
.add(
'Values',
() => html`
setting modelValue
setting modelValue active
setting modelValue checked
setting modelValue disabled
setting choiceValue
setting choiceValue active
setting choiceValue checked
setting choiceValue disabled
`,
);