Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        


react-zustand-example



REACT-ZUSTAND-EXAMPLE


last-commit
repo-top-language
repo-language-count



Built with the tools and technologies:



HTML5
CSS3
JavaScript
TypeScript


React
Zustand
Immer
tailwindcss
shadcnui


Vite


## 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
```