## File Structure
project-name/
├── public/
│ ├── index.html
│ └── ...
├── src/
│ ├── components/
│ ├── containers/
│ ├── redux/
│ ├── styles/
│ ├── utils/
│ ├── App.tsx
│ ├── index.tsx
│ └── ...
├── package.json
└── ...components/: Reusable presentational componentscontainers/: Components connected to Reduxredux/: Redux-related files (actions, reducers, store)styles/: Global styles and theme definitionsutils/: Utility functions and helpers