| 16 | | "connect"; |
| 17 | |
| 18 | export interface StateStore { |
| 19 | selectedTool: selectedToolType; |
| 20 | setSelectedTool: (tool: selectedToolType) => void; |
| 21 | } |
| 22 | |
| 23 | const useStateStore = create<StateStore>((set) => ({ |
| 24 | selectedTool: "pen", |
nothing calls this directly
no outgoing calls
no test coverage detected