https://github.com/ibrsec/redux-store
This is a store app with redux
https://github.com/ibrsec/redux-store
axios react redux tailwind
Last synced: about 1 month ago
JSON representation
This is a store app with redux
- Host: GitHub
- URL: https://github.com/ibrsec/redux-store
- Owner: ibrsec
- Created: 2024-05-01T11:37:42.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T12:25:47.000Z (almost 2 years ago)
- Last Synced: 2025-01-08T21:36:32.106Z (over 1 year ago)
- Topics: axios, react, redux, tailwind
- Language: JavaScript
- Homepage: https://redux-store-ruby.vercel.app
- Size: 1.39 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Redux Store App
An awesome Redux Store App
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
## โน๏ธ About The Project
[](https://redux-store-ruby.vercel.app/)
---
๐ฏ Used React environment
๐ฅ Products listed on products with categories
๐ฅ Products details can be displayed
๐ฅ Products can be addted to the cart
๐ฅ Cart can be managed with clicking on cart icon
๐ฉ Used redux for for global state
```sh
# clone the project
git clone https://github.com/ibrsec/redux-store.git
# enter the project directory
cd redux-store
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
redux-store (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---pages (folder)
| |
| |---components (folder)
| |
| |---img (folder)
| |
| |---router (folder)
| |
| |---store (folder) (store and slices)
| |
| |---App.js
| |---App.css
| |---Index.js
| โ---Index.css
|
|----package.json
|----tailwind.config.js
|----yarn.lock
โ----readme.md
```
---