Hooks
Explore all available hooks and their capabilities.
useArray
Reactive array with automatic re-rendering
A hook that returns a reactive array with all native Array methods (push, pop, splice, etc.) that automatically trigger component re-renders when the array is mutated.
useMap
Reactive Map with automatic re-rendering
A hook that returns a reactive Map with set, delete, and clear operations that automatically trigger component re-renders when the map is mutated.
useSet
Reactive Set with automatic re-rendering
A hook that returns a reactive Set with add, delete, and clear operations that automatically trigger component re-renders when the set is mutated.
useQueue
Reactive Queue implementation
A hook that returns a reactive Queue with enqueue, dequeue, peek, and isEmpty operations that automatically trigger component re-renders when the queue is modified.
useStack
Reactive Stack implementation
A hook that returns a reactive Stack with push, pop, peek, and isEmpty operations that automatically trigger component re-renders when the stack is modified.