UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

12 lines (9 loc) 338 B
import { kInternal } from '@liveblocks/core'; import { useClient } from '@liveblocks/react'; import { useSignal } from '@liveblocks/react/_private'; function useCurrentUserId() { const client = useClient(); return useSignal(client[kInternal].currentUserId) ?? null; } export { useCurrentUserId }; //# sourceMappingURL=shared.js.map