import { storiesOf, html } from '@open-wc/storybook';
import '../lion-input-amount.js';
storiesOf('Forms|', module)
.add(
'Default',
() => html`
`,
)
.add(
'Set USD as currency',
() => html`
`,
)
.add(
'Set JOD as currency',
() => html`
`,
)
.add(
'Force locale to nl-NL',
() => html`
`,
)
.add(
'Force locale to en-US',
() => html`
`,
)
.add(
'Faulty prefilled',
() => html`
`,
);