react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
22 lines (17 loc) • 502 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.configureActions = exports.config = void 0;
require("core-js/modules/es.object.assign.js");
var config = {
depth: 10,
clearOnStoryChange: true,
limit: 50
};
exports.config = config;
var configureActions = function configureActions() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
Object.assign(config, options);
};
exports.configureActions = configureActions;