An open API service indexing awesome lists of open source software.

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

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.lock

20 directories, 21 files

```