File Structure - arthur791004/notes GitHub Wiki

Feature-Based

<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

Nature-Based

├── actions/
├── components/
├── containers/
├── reducers/
└── ...

Example

├── __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
└── ...
⚠️ **GitHub.com Fallback** ⚠️