├── .babelrc ├── .esdoc.json ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── app ├── actions │ └── index.js ├── components │ ├── index.js │ └── test │ │ ├── __test__ │ │ └── index.test.js │ │ ├── assets │ │ └── TestComponent.js │ │ └── index.jsx ├── constants │ ├── actionTypes.js │ ├── common.js │ ├── globalStyles.js │ ├── routes.jsx │ ├── store.js │ └── styleReset.js ├── containers │ ├── app │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.js.snap │ │ │ ├── action.test.js │ │ │ ├── epic.test.js │ │ │ ├── index.test.js │ │ │ └── reducer.test.js │ │ ├── action.js │ │ ├── assets │ │ │ └── AppContainer.js │ │ ├── epic.js │ │ ├── index.jsx │ │ └── reducer.js │ └── home │ │ ├── __test__ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ ├── action.test.js │ │ ├── epic.test.js │ │ ├── index.test.js │ │ └── reducer.test.js │ │ ├── action.js │ │ ├── assets │ │ └── HomeContainer.js │ │ ├── epic.js │ │ ├── index.jsx │ │ └── reducer.js ├── elements │ ├── index.js │ └── test │ │ ├── __test__ │ │ └── index.test.js │ │ ├── assets │ │ └── TestElement.js │ │ └── index.jsx ├── epics │ └── index.js ├── hoc │ ├── asyncComponent │ │ ├── __test__ │ │ │ └── index.test.js │ │ └── index.jsx │ ├── cleanOnUnmount │ │ ├── __test__ │ │ │ ├── __snapshots__ │ │ │ │ └── index.test.js.snap │ │ │ ├── action.test.js │ │ │ ├── index.test.js │ │ │ └── reducer.test.js │ │ ├── action.js │ │ ├── index.js │ │ └── reducer.js │ ├── index.js │ └── reduxConnect │ │ ├── __test__ │ │ ├── __snapshots__ │ │ │ └── index.test.js.snap │ │ └── index.test.js │ │ └── index.js ├── main.jsx └── reducers │ └── index.js ├── docs ├── ast │ └── source │ │ ├── .external-ecmascript.js.json │ │ ├── actions │ │ └── index.js.json │ │ ├── components │ │ ├── index.js.json │ │ └── test │ │ │ └── assets │ │ │ └── TestComponent.js.json │ │ ├── constants │ │ ├── actionTypes.js.json │ │ ├── common.js.json │ │ ├── globalStyles.js.json │ │ └── styleReset.js.json │ │ ├── containers │ │ ├── app │ │ │ ├── action.js.json │ │ │ ├── assets │ │ │ │ └── AppContainer.js.json │ │ │ └── epic.js.json │ │ └── home │ │ │ ├── action.js.json │ │ │ ├── assets │ │ │ └── HomeContainer.js.json │ │ │ └── epic.js.json │ │ ├── elements │ │ ├── index.js.json │ │ └── test │ │ │ └── assets │ │ │ └── TestElement.js.json │ │ ├── epics │ │ └── index.js.json │ │ ├── hoc │ │ ├── cleanOnUnmount │ │ │ ├── action.js.json │ │ │ ├── index.js.json │ │ │ └── reducer.js.json │ │ ├── index.js.json │ │ └── reduxConnect │ │ │ └── index.js.json │ │ └── reducers │ │ └── index.js.json ├── badge.svg ├── coverage.json ├── css │ ├── github.css │ ├── identifiers.css │ ├── manual.css │ ├── prettify-tomorrow.css │ ├── search.css │ ├── source.css │ ├── style.css │ └── test.css ├── file │ └── app │ │ ├── actions │ │ └── index.js.html │ │ ├── components │ │ ├── index.js.html │ │ └── test │ │ │ └── assets │ │ │ └── TestComponent.js.html │ │ ├── constants │ │ ├── actionTypes.js.html │ │ ├── common.js.html │ │ ├── globalStyles.js.html │ │ └── styleReset.js.html │ │ ├── containers │ │ ├── app │ │ │ ├── action.js.html │ │ │ ├── assets │ │ │ │ └── AppContainer.js.html │ │ │ └── epic.js.html │ │ └── home │ │ │ ├── action.js.html │ │ │ ├── assets │ │ │ └── HomeContainer.js.html │ │ │ └── epic.js.html │ │ ├── elements │ │ ├── index.js.html │ │ └── test │ │ │ └── assets │ │ │ └── TestElement.js.html │ │ ├── epics │ │ └── index.js.html │ │ ├── hoc │ │ ├── cleanOnUnmount │ │ │ ├── action.js.html │ │ │ ├── index.js.html │ │ │ └── reducer.js.html │ │ ├── index.js.html │ │ └── reduxConnect │ │ │ └── index.js.html │ │ └── reducers │ │ └── index.js.html ├── function │ └── index.html ├── identifiers.html ├── image │ ├── badge.svg │ ├── esdoc-logo-mini-black.png │ ├── esdoc-logo-mini.png │ ├── github.png │ ├── manual-badge.svg │ └── search.png ├── index.html ├── index.json ├── lint.json ├── script │ ├── inherited-summary.js │ ├── inner-link.js │ ├── manual.js │ ├── patch-for-local.js │ ├── prettify │ │ ├── Apache-License-2.0.txt │ │ └── prettify.js │ ├── pretty-print.js │ ├── search.js │ ├── search_index.js │ └── test-summary.js ├── source.html └── variable │ └── index.html ├── package.json ├── public ├── index.html └── js │ ├── bundle.js │ ├── bundle.js.map │ ├── chunks │ ├── home.js │ ├── home.js.map │ ├── test-component.js │ └── test-component.js.map │ ├── vendors.js │ └── vendors.js.map ├── shim.js ├── test.setup.js ├── view └── index.html ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/.babelrc -------------------------------------------------------------------------------- /.esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/.esdoc.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/actions/index.js -------------------------------------------------------------------------------- /app/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/components/index.js -------------------------------------------------------------------------------- /app/components/test/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/components/test/__test__/index.test.js -------------------------------------------------------------------------------- /app/components/test/assets/TestComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/components/test/assets/TestComponent.js -------------------------------------------------------------------------------- /app/components/test/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/components/test/index.jsx -------------------------------------------------------------------------------- /app/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/constants/actionTypes.js -------------------------------------------------------------------------------- /app/constants/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/constants/common.js -------------------------------------------------------------------------------- /app/constants/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/constants/globalStyles.js -------------------------------------------------------------------------------- /app/constants/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/constants/routes.jsx -------------------------------------------------------------------------------- /app/constants/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/constants/store.js -------------------------------------------------------------------------------- /app/constants/styleReset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/constants/styleReset.js -------------------------------------------------------------------------------- /app/containers/app/__test__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/__test__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/containers/app/__test__/action.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/__test__/action.test.js -------------------------------------------------------------------------------- /app/containers/app/__test__/epic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/__test__/epic.test.js -------------------------------------------------------------------------------- /app/containers/app/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/__test__/index.test.js -------------------------------------------------------------------------------- /app/containers/app/__test__/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/__test__/reducer.test.js -------------------------------------------------------------------------------- /app/containers/app/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/action.js -------------------------------------------------------------------------------- /app/containers/app/assets/AppContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/assets/AppContainer.js -------------------------------------------------------------------------------- /app/containers/app/epic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/epic.js -------------------------------------------------------------------------------- /app/containers/app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/index.jsx -------------------------------------------------------------------------------- /app/containers/app/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/app/reducer.js -------------------------------------------------------------------------------- /app/containers/home/__test__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/__test__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/containers/home/__test__/action.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/__test__/action.test.js -------------------------------------------------------------------------------- /app/containers/home/__test__/epic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/__test__/epic.test.js -------------------------------------------------------------------------------- /app/containers/home/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/__test__/index.test.js -------------------------------------------------------------------------------- /app/containers/home/__test__/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/__test__/reducer.test.js -------------------------------------------------------------------------------- /app/containers/home/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/action.js -------------------------------------------------------------------------------- /app/containers/home/assets/HomeContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/assets/HomeContainer.js -------------------------------------------------------------------------------- /app/containers/home/epic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/epic.js -------------------------------------------------------------------------------- /app/containers/home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/index.jsx -------------------------------------------------------------------------------- /app/containers/home/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/containers/home/reducer.js -------------------------------------------------------------------------------- /app/elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/elements/index.js -------------------------------------------------------------------------------- /app/elements/test/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/elements/test/__test__/index.test.js -------------------------------------------------------------------------------- /app/elements/test/assets/TestElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/elements/test/assets/TestElement.js -------------------------------------------------------------------------------- /app/elements/test/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/elements/test/index.jsx -------------------------------------------------------------------------------- /app/epics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/epics/index.js -------------------------------------------------------------------------------- /app/hoc/asyncComponent/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/asyncComponent/__test__/index.test.js -------------------------------------------------------------------------------- /app/hoc/asyncComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/asyncComponent/index.jsx -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/__test__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/__test__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/__test__/action.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/__test__/action.test.js -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/__test__/index.test.js -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/__test__/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/__test__/reducer.test.js -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/action.js -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/index.js -------------------------------------------------------------------------------- /app/hoc/cleanOnUnmount/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/cleanOnUnmount/reducer.js -------------------------------------------------------------------------------- /app/hoc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/index.js -------------------------------------------------------------------------------- /app/hoc/reduxConnect/__test__/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/reduxConnect/__test__/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /app/hoc/reduxConnect/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/reduxConnect/__test__/index.test.js -------------------------------------------------------------------------------- /app/hoc/reduxConnect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/hoc/reduxConnect/index.js -------------------------------------------------------------------------------- /app/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/main.jsx -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /docs/ast/source/.external-ecmascript.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/.external-ecmascript.js.json -------------------------------------------------------------------------------- /docs/ast/source/actions/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/actions/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/components/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/components/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/components/test/assets/TestComponent.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/components/test/assets/TestComponent.js.json -------------------------------------------------------------------------------- /docs/ast/source/constants/actionTypes.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/constants/actionTypes.js.json -------------------------------------------------------------------------------- /docs/ast/source/constants/common.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/constants/common.js.json -------------------------------------------------------------------------------- /docs/ast/source/constants/globalStyles.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/constants/globalStyles.js.json -------------------------------------------------------------------------------- /docs/ast/source/constants/styleReset.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/constants/styleReset.js.json -------------------------------------------------------------------------------- /docs/ast/source/containers/app/action.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/containers/app/action.js.json -------------------------------------------------------------------------------- /docs/ast/source/containers/app/assets/AppContainer.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/containers/app/assets/AppContainer.js.json -------------------------------------------------------------------------------- /docs/ast/source/containers/app/epic.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/containers/app/epic.js.json -------------------------------------------------------------------------------- /docs/ast/source/containers/home/action.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/containers/home/action.js.json -------------------------------------------------------------------------------- /docs/ast/source/containers/home/assets/HomeContainer.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/containers/home/assets/HomeContainer.js.json -------------------------------------------------------------------------------- /docs/ast/source/containers/home/epic.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/containers/home/epic.js.json -------------------------------------------------------------------------------- /docs/ast/source/elements/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/elements/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/elements/test/assets/TestElement.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/elements/test/assets/TestElement.js.json -------------------------------------------------------------------------------- /docs/ast/source/epics/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/epics/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/hoc/cleanOnUnmount/action.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/hoc/cleanOnUnmount/action.js.json -------------------------------------------------------------------------------- /docs/ast/source/hoc/cleanOnUnmount/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/hoc/cleanOnUnmount/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/hoc/cleanOnUnmount/reducer.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/hoc/cleanOnUnmount/reducer.js.json -------------------------------------------------------------------------------- /docs/ast/source/hoc/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/hoc/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/hoc/reduxConnect/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/hoc/reduxConnect/index.js.json -------------------------------------------------------------------------------- /docs/ast/source/reducers/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/ast/source/reducers/index.js.json -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/coverage.json -------------------------------------------------------------------------------- /docs/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/github.css -------------------------------------------------------------------------------- /docs/css/identifiers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/identifiers.css -------------------------------------------------------------------------------- /docs/css/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/manual.css -------------------------------------------------------------------------------- /docs/css/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/search.css -------------------------------------------------------------------------------- /docs/css/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/source.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/css/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/css/test.css -------------------------------------------------------------------------------- /docs/file/app/actions/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/actions/index.js.html -------------------------------------------------------------------------------- /docs/file/app/components/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/components/index.js.html -------------------------------------------------------------------------------- /docs/file/app/components/test/assets/TestComponent.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/components/test/assets/TestComponent.js.html -------------------------------------------------------------------------------- /docs/file/app/constants/actionTypes.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/constants/actionTypes.js.html -------------------------------------------------------------------------------- /docs/file/app/constants/common.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/constants/common.js.html -------------------------------------------------------------------------------- /docs/file/app/constants/globalStyles.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/constants/globalStyles.js.html -------------------------------------------------------------------------------- /docs/file/app/constants/styleReset.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/constants/styleReset.js.html -------------------------------------------------------------------------------- /docs/file/app/containers/app/action.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/containers/app/action.js.html -------------------------------------------------------------------------------- /docs/file/app/containers/app/assets/AppContainer.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/containers/app/assets/AppContainer.js.html -------------------------------------------------------------------------------- /docs/file/app/containers/app/epic.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/containers/app/epic.js.html -------------------------------------------------------------------------------- /docs/file/app/containers/home/action.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/containers/home/action.js.html -------------------------------------------------------------------------------- /docs/file/app/containers/home/assets/HomeContainer.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/containers/home/assets/HomeContainer.js.html -------------------------------------------------------------------------------- /docs/file/app/containers/home/epic.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/containers/home/epic.js.html -------------------------------------------------------------------------------- /docs/file/app/elements/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/elements/index.js.html -------------------------------------------------------------------------------- /docs/file/app/elements/test/assets/TestElement.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/elements/test/assets/TestElement.js.html -------------------------------------------------------------------------------- /docs/file/app/epics/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/epics/index.js.html -------------------------------------------------------------------------------- /docs/file/app/hoc/cleanOnUnmount/action.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/hoc/cleanOnUnmount/action.js.html -------------------------------------------------------------------------------- /docs/file/app/hoc/cleanOnUnmount/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/hoc/cleanOnUnmount/index.js.html -------------------------------------------------------------------------------- /docs/file/app/hoc/cleanOnUnmount/reducer.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/hoc/cleanOnUnmount/reducer.js.html -------------------------------------------------------------------------------- /docs/file/app/hoc/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/hoc/index.js.html -------------------------------------------------------------------------------- /docs/file/app/hoc/reduxConnect/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/hoc/reduxConnect/index.js.html -------------------------------------------------------------------------------- /docs/file/app/reducers/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/file/app/reducers/index.js.html -------------------------------------------------------------------------------- /docs/function/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/function/index.html -------------------------------------------------------------------------------- /docs/identifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/identifiers.html -------------------------------------------------------------------------------- /docs/image/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/image/badge.svg -------------------------------------------------------------------------------- /docs/image/esdoc-logo-mini-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/image/esdoc-logo-mini-black.png -------------------------------------------------------------------------------- /docs/image/esdoc-logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/image/esdoc-logo-mini.png -------------------------------------------------------------------------------- /docs/image/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/image/github.png -------------------------------------------------------------------------------- /docs/image/manual-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/image/manual-badge.svg -------------------------------------------------------------------------------- /docs/image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/image/search.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/index.json -------------------------------------------------------------------------------- /docs/lint.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /docs/script/inherited-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/inherited-summary.js -------------------------------------------------------------------------------- /docs/script/inner-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/inner-link.js -------------------------------------------------------------------------------- /docs/script/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/manual.js -------------------------------------------------------------------------------- /docs/script/patch-for-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/patch-for-local.js -------------------------------------------------------------------------------- /docs/script/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/script/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/prettify/prettify.js -------------------------------------------------------------------------------- /docs/script/pretty-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/pretty-print.js -------------------------------------------------------------------------------- /docs/script/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/search.js -------------------------------------------------------------------------------- /docs/script/search_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/search_index.js -------------------------------------------------------------------------------- /docs/script/test-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/script/test-summary.js -------------------------------------------------------------------------------- /docs/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/source.html -------------------------------------------------------------------------------- /docs/variable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/docs/variable/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/bundle.js -------------------------------------------------------------------------------- /public/js/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/bundle.js.map -------------------------------------------------------------------------------- /public/js/chunks/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/chunks/home.js -------------------------------------------------------------------------------- /public/js/chunks/home.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/chunks/home.js.map -------------------------------------------------------------------------------- /public/js/chunks/test-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/chunks/test-component.js -------------------------------------------------------------------------------- /public/js/chunks/test-component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/chunks/test-component.js.map -------------------------------------------------------------------------------- /public/js/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/vendors.js -------------------------------------------------------------------------------- /public/js/vendors.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/public/js/vendors.js.map -------------------------------------------------------------------------------- /shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/shim.js -------------------------------------------------------------------------------- /test.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/test.setup.js -------------------------------------------------------------------------------- /view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/view/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amin52J/React-Redux-Enterprise/HEAD/yarn.lock --------------------------------------------------------------------------------