Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 679 Bytes

File metadata and controls

33 lines (27 loc) · 679 Bytes

Codebase Structure

## File Structure

project-name/
├── public/
│ ├── index.html
│ └── ...
├── src/
│ ├── components/
│ ├── containers/
│ ├── redux/
│ ├── styles/
│ ├── utils/
│ ├── App.tsx
│ ├── index.tsx
│ └── ...
├── package.json
└── ...

Component Structure

  • components/: Reusable presentational components
  • containers/: Components connected to Redux
  • redux/: Redux-related files (actions, reducers, store)
  • styles/: Global styles and theme definitions
  • utils/: Utility functions and helpers

Go back to Readme