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