mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-03 22:25:27 +00:00
56a8f72e39
Reorganize all components related to the participant tile into a dedicated feature folder, so the code organization is clearer and related components are grouped together.
7 lines
301 B
TypeScript
7 lines
301 B
TypeScript
import { ParticipantTile } from '@/features/participantTile/components/ParticipantTile.tsx'
|
|
import type { FocusLayoutProps } from '@livekit/components-react'
|
|
|
|
export function FocusLayout({ trackRef, ...htmlProps }: FocusLayoutProps) {
|
|
return <ParticipantTile trackRef={trackRef} {...htmlProps} />
|
|
}
|