Files
coopgo/node_modules/redux-notifications/lib/index.js
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

26 lines
884 B
JavaScript

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.reducer = exports.actions = exports.Notifs = undefined;
var _reducer = require('./reducer');
var _reducer2 = _interopRequireDefault(_reducer);
var _actions = require('./actions');
var actions = _interopRequireWildcard(_actions);
var _Notifs = require('./components/Notifs');
var _Notifs2 = _interopRequireDefault(_Notifs);
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.Notifs = _Notifs2.default;
exports.actions = actions;
exports.reducer = _reducer2.default;