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