modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
26 lines (21 loc) • 557 B
JavaScript
import { USER } from './constants'
import reducer from './reducers'
import select from './selectors'
/**
* EXPORTS =====================================================================
* Modules' Exposing API - to enable consistent and maintainable app integration
* =============================================================================
*/
export * from './constants'
export * from './actions'
export * from './definitions'
export * from './logic'
export {
select,
}
const user = {
NAME: USER,
reducer,
select,
}
export default user