├── .gitignore ├── README.md ├── assets └── devtools.png ├── example └── index.ts ├── package.json ├── src └── index.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/README.md -------------------------------------------------------------------------------- /assets/devtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/assets/devtools.png -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/example/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beerose/simple-zustand-devtools/HEAD/tsconfig.json --------------------------------------------------------------------------------