import { Image } from 'components/layout'; import { FC } from 'react'; export const Participant: FC = ({ participant }) => { const { uri } = participant; return ; }; type ParticipantType = { id: string; uri: string; username: string; }; interface ParticipantProps { participant: ParticipantType; }