a tool for shared writing and social publishing
at cbae01a9a090d3d12fe494ef1f396016b00aaea1 8 lines 189 B view raw
1import { create } from "zustand"; 2 3export let usePollBlockUIState = create( 4 () => 5 ({}) as { 6 [entity: string]: { state: "editing" | "voting" | "results" } | undefined; 7 }, 8);