import { HStack, Text } from '@chakra-ui/react'; import { Participant } from 'livekit-client'; export interface ChatData { sentAt: Date; message: string; from?: Participant; } const ChatEntry = ({ message, from }: ChatData) => { return ( {from ? {`${from.name || from.identity}`}: : null} {message} ); }; export default ChatEntry;