Concept Flow - Zustand for client state
Create Zustand store
Define state and actions
Use store in component
Component renders with state
User triggers action
Action updates state
Component re-renders with new state
Zustand creates a store with state and actions, components use the store to read state and trigger updates, causing re-render.