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