import { useSyncExternalStore } from "react"; import { View, Text } from "react-native"; import { keysStore } from "./store"; export function ShortcutDebug() { const entries = useSyncExternalStore( keysStore.subscribe, keysStore.getSnapshot, ); return ( {entries .values() .map(([key, _]) => key) .toArray() .join(",")} ); }