| 25 | // create zustand store: |
| 26 | |
| 27 | interface MountedStore { |
| 28 | mounted: boolean |
| 29 | setMounted: (mounted: boolean) => void |
| 30 | } |
| 31 | |
| 32 | const useMountedStore = create<MountedStore>((set) => ({ |
| 33 | mounted: false, |
nothing calls this directly
no outgoing calls
no test coverage detected