https://github.com/victorbadaro/react-redux-example
A simple example of how to use redux in react apps
https://github.com/victorbadaro/react-redux-example
react redux redux-react shadcn-ui state-management tailwindcss typescript vite
Last synced: about 1 month ago
JSON representation
A simple example of how to use redux in react apps
- Host: GitHub
- URL: https://github.com/victorbadaro/react-redux-example
- Owner: victorbadaro
- Created: 2024-09-09T15:31:46.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-08T21:12:30.000Z (7 months ago)
- Last Synced: 2025-01-30T07:13:38.026Z (3 months ago)
- Topics: react, redux, redux-react, shadcn-ui, state-management, tailwindcss, typescript, vite
- Language: TypeScript
- Homepage: https://victorbadaro-react-redux-example.netlify.app/
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
REACT-REDUX-EXAMPLE
![]()
![]()
![]()
Built with the tools and technologies:
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
## Repository Structure
```sh
└── react-redux-example/
├── README.md
├── components.json
├── eslint.config.js
├── index.html
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── public
│ └── vite.svg
├── src
│ ├── app.tsx
│ ├── components
│ │ ├── create-user-dialog.tsx
│ │ ├── header.tsx
│ │ ├── ui
│ │ │ ├── button.tsx
│ │ │ ├── dialog.tsx
│ │ │ ├── input.tsx
│ │ │ ├── label.tsx
│ │ │ └── table.tsx
│ │ └── users-list.tsx
│ ├── index.css
│ ├── lib
│ │ └── utils.ts
│ ├── main.tsx
│ ├── store
│ │ ├── index.ts
│ │ └── users
│ │ ├── actions.ts
│ │ ├── reducer.ts
│ │ └── types.ts
│ └── vite-env.d.ts
├── tailwind.config.js
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
```