feature-redux-logic
Version:
feature-u redux-logic integration
24 lines (20 loc) • 713 B
JavaScript
import createLogicAspect from './logicAspect';
//***
//*** Promote all feature-redux-logic utilities through a centralized module.
//***
// NOTE: This non-default export supports ES6 imports.
// Example:
// import { createFeature } from 'feature-redux-logic';
// -or-
// import * as FeatureU from 'feature-redux-logic';
export {
createLogicAspect,
};
// NOTE: This default export supports CommonJS modules (otherwise Babel does NOT promote them).
// Example:
// const { createFeature } = require('feature-redux-logic');
// -or-
// const FeatureU = require('feature-redux-logic');
export default {
createLogicAspect,
};