Hiyve Components - v1.0.0
    Preparing search index...

    Variable ActiveRoomsListConst

    ActiveRoomsList: NamedExoticComponent<ActiveRoomsListProps> = ...

    ActiveRoomsList displays a real-time list of active rooms available for joining.

    Connects to an SSE stream on mount for live updates. Rooms appear as they are advertised and disappear when removed. Supports search filtering and custom card rendering.

    const streamUrl = await cloudClient.getActiveRoomsStreamUrl(userId);
    <ActiveRoomsList
    streamUrl={streamUrl}
    onJoinRoom={(room) => store.joinRoom(room.name, userId)}
    />