Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victorbadaro/react-zustand-example
A very small (and simple) example of state management in react using Zustand
https://github.com/victorbadaro/react-zustand-example
react shadcn-ui state-management tailwindcss typescript vite zustand
Last synced: 10 days ago
JSON representation
A very small (and simple) example of state management in react using Zustand
- Host: GitHub
- URL: https://github.com/victorbadaro/react-zustand-example
- Owner: victorbadaro
- Created: 2024-09-17T17:56:18.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-06T02:30:52.000Z (4 months ago)
- Last Synced: 2024-12-02T23:13:08.520Z (2 months ago)
- Topics: react, shadcn-ui, state-management, tailwindcss, typescript, vite, zustand
- Language: TypeScript
- Homepage: https://react-zustand-example.netlify.app/
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
REACT-ZUSTAND-EXAMPLE
![]()
![]()
![]()
Built with the tools and technologies:
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
![]()
## Repository Structure
```sh
└── react-zustand-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
│ ├── stores
│ │ └── users.ts
│ └── vite-env.d.ts
├── tailwind.config.js
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
```