import { storiesOf, html } from '@open-wc/demoing-storybook';
import '../lion-select.js';
storiesOf('Forms|Select', module)
.add(
'Default',
() => html`
Favorite color
`,
)
.add(
'Disabled',
() => html`
Favorite color
`,
)
.add(
'Pre selected',
() => html`
Favorite color
`,
)
.add('Validation', () => {
const submit = () => {
const form = document.querySelector('#form');
if (form.errorState === false) {
console.log(form.serializeGroup());
}
};
return html`
`;
});