import { storiesOf, html, action } from '@open-wc/storybook'; import { ajax } from '../src/ajax.js'; import { AjaxClass } from '../src/AjaxClass.js'; /* eslint-disable indent */ storiesOf('Ajax system|ajax', module) .addParameters({ options: { selectedPanel: 'storybook/actions/actions-panel' } }) .add( 'Get', () => html` `, ) .add( 'Cancelable', () => html` `, ) .add( 'CancelPreviousOnNewRequest', () => html` `, );