UNPKG

modules-pack

Version:

JavaScript Modules for Modern Frontend & Backend Projects

19 lines (15 loc) 463 B
import { UPLOAD } from './constants' import reducer from './reducers' import select from './selectors' /** * EXPORTS ===================================================================== * Modules' Exposing API - to enable consistent and maintainable app integration * ============================================================================= */ export * from './constants' const upload = { NAME: UPLOAD, reducer, select, } export default upload