https://github.com/ibrsec/redux-counter-todo
https://github.com/ibrsec/redux-counter-todo
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/redux-counter-todo
- Owner: ibrsec
- Created: 2024-04-30T12:14:29.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-05T04:07:23.000Z (almost 2 years ago)
- Last Synced: 2025-01-08T21:36:33.450Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://redux-counter-todo.vercel.app
- Size: 410 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Redux Counter and Todo App
An awesome Redux Counter and Todo App
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
## โน๏ธ About The Project
[](https://redux-counter-todo.vercel.app)
[](https://redux-counter-todo.vercel.app/todo)
---
๐ฏ Used React environment
๐ฅ Counter and todo routes
๐ฉ Used redux for count and todos states
```sh
# clone the project
git clone https://github.com/ibrsec/redux-counter-todo.git
# enter the project directory
cd redux-counter-todo
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
redux-counter-todo (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---pages (folder)
| |
| |---components (folder)
| |
| |---store (folder) (store and slices)
| |
| |---App.js
| |---App.css
| |---Index.js
| โ---Index.css
|
|----package.json
|----tailwind.config.js
|----yarn.lock
โ----readme.md
```
---