useMaybeParticipantContext
function useMaybeParticipantContext(): unknown;Defined in: packages/react/src/hooks/participant/useMaybeParticipantContext.ts:19
Returns a participant from the ParticipantContext if it exists, otherwise undefined.
Returns
unknown
Example
function ParticipantLabel() {
const participant = useMaybeParticipantContext();
return <span>{participant ? "Participant available" : "No participant"}</span>;
}