https://github.com/navneetlal/react-redux-epic-ts
Basic react application with redux and apis in typescipt
https://github.com/navneetlal/react-redux-epic-ts
Last synced: 7 days ago
JSON representation
Basic react application with redux and apis in typescipt
- Host: GitHub
- URL: https://github.com/navneetlal/react-redux-epic-ts
- Owner: navneetlal
- License: mit
- Created: 2021-04-10T06:47:11.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-05T23:53:00.000Z (about 2 years ago)
- Last Synced: 2025-03-08T13:03:05.016Z (2 months ago)
- Language: TypeScript
- Size: 6.78 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Redux Application
## Folder Structure
```bash
.
├── src
│ ├── assets
│ │ ├── fonts
│ │ └── images
│ ├── components
│ ├── containers
│ ├── helpers
│ ├── hooks
│ ├── store
│ │ ├── actions
│ │ ├── epics
│ │ ├── reducers
│ │ ├── types
│ │ └── index.ts
│ ├── utils
│ ├── views
│ │ ├── CategoryPage
│ │ │ ├── components
│ │ │ │ └── CategoryPageComponent.tsx
│ │ │ └── CategoryPage.tsx
│ │ └── HomePage
│ │ ├── components
│ │ │ └── HomePageComponent.tsx
│ │ └── HomePage.tsx
│ ├── index.css
│ ├── index.tsx
│ ├── routes.tsx
├── package.json
├── README.md
├── tsconfig.json
└── yarn.lock20 directories, 21 files
```