react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
9 lines • 335 B
JavaScript
import global from 'global';
import renderStorybookUI from '@storybook/ui';
import Provider from './provider';
import { importPolyfills } from './conditional-polyfills';
var document = global.document;
importPolyfills().then(function () {
var rootEl = document.getElementById('root');
renderStorybookUI(rootEl, new Provider());
});