snort/packages/app/src/Hooks/useDmsCache.tsx

10 lines
209 B
TypeScript

import { DmCache } from "Cache";
import { useSyncExternalStore } from "react";
export function useDmCache() {
return useSyncExternalStore(
c => DmCache.hook(c, "*"),
() => DmCache.snapshot()
);
}