zustand

Installation
SKILL.md

Zustand State Management

Zustand is a small, fast, scalable state management solution for React. This skill covers store creation, TypeScript patterns, middleware, and performance optimization.

Core Concepts

Basic Store Creation

import { create } from 'zustand'

interface BearStore {
  bears: number
  increase: () => void
  reset: () => void
}
Installs
1
First Seen
Jun 26, 2026
zustand — kettleofketchup/dotfiles