0 votes
in ReactJS by

Most of the applications has several top-level directories as below:

  1. Components: Used for dumb components unaware of Redux.
  2. Containers: Used for smart components connected to Redux.
  3. Actions: Used for all action creators, where file names correspond to part of the app.
  4. Reducers: Used for all reducers, where files name correspond to state key.
  5. Store: Used for store initialization.

This structure works well for small and medium size apps.

Related questions

0 votes
asked Dec 22, 2023 in ReactJS by john ganales
0 votes
asked Mar 4, 2020 in ReactJS by JackTerrance
...