useLocalParticipant() : Object
Hooks
useLocalParticipant
Returns a local participant object.
Deprecated 0.17.0
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns a local participant object.
useLocalParticipant() : Object
import { useLocalParticipant } from '@daily-co/daily-react';
export const UseLocalParticipantDemo = () => {
const localParticipant = useLocalParticipant();
return <div>Hello, {localParticipant?.user_name}</div>;
};