UNPKG

react-together

Version:

A library to seamlessly add real-time multi-user interaction to your React app!

8 lines (7 loc) 177 B
export interface ConnectedUser { userId: string; isYou: boolean; nickname: string; name: string; } export default function useConnectedUsers(): ConnectedUser[];