<container>
├── __tests__/
│ ├── actions.test.js
│ ├── epics.test.js
│ ├── index.test.js
│ ├── loader.test.js
│ ├── reducer.test.js
│ └── selectors.test.js
├── components/
│ ├── <component>.js
│ └── __tests__/
├── actions.js
├── constants.js
├── epics.js
├── index.js
├── loader.js
├── messages.js
├── reducer.js
├── selectors.js
├── stories.js
└── types.js
├── actions/
├── components/
├── containers/
├── reducers/
└── ...
├── __mocks__/
├── __tests__/
├── assets/
├── components/
├── constants/
├── services/
├── translations/
├── utils/
├── .nginx.conf
├── app.js
├── epics.js
├── global-styles.js
├── i18n.js
├── index.html
├── jsconfig.json
├── reducers.js
├── rx.js /*** import only need from RxJS ***/
├── store.js
└── ...