import * as React from 'react'; import type { TrackReferenceOrPlaceholder } from '@livekit/components-core'; import type { ParticipantClickEvent } from '@livekit/components-core'; import { ParticipantTile } from '@/lib/ParticipantTile'; export interface FocusLayoutContainerProps extends React.HTMLAttributes {} export function FocusLayoutContainer(props: FocusLayoutContainerProps) { return (
{props.children}
); } export interface FocusLayoutProps extends React.HTMLAttributes { trackRef?: TrackReferenceOrPlaceholder; onParticipantClick?: (evt: ParticipantClickEvent) => void; } export function FocusLayout({ trackRef, ...htmlProps }: FocusLayoutProps) { return ; }