UNPKG

modules-pack

Version:

JavaScript Modules for Modern Frontend & Backend Projects

27 lines (22 loc) 551 B
import { POPUP } from './constants' import reducer from './reducers' import saga from './sagas' import select from './selectors' /** * EXPORTS ===================================================================== * Modules' Exposing API - to enable consistent and maintainable app integration * ============================================================================= */ export * from './constants' export * from './actions' export { POPUP, select, } const popup = { NAME: POPUP, reducer, saga, select, } export default popup