import { storiesOf, html } from '@open-wc/demoing-storybook';
import '../lion-input-amount.js';
storiesOf('Forms|Input Amount', 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`
`,
);