import { storiesOf, html } from '@open-wc/storybook'; import { isCountryIBANValidator } from '../src/validators.js'; import '../lion-input-iban.js'; storiesOf('Forms|', module) .add( 'Default', () => html` `, ) .add( 'Prefilled', () => html` `, ) .add( 'Faulty prefilled', () => html` `, ) .add( 'Country restrictions', () => html` `, );