export interface ChatProps {
  name: string;
  message: string;
  emotion?: React.ReactNode;
  emotionReplay?: React.ReactNode;
  time: string;
  send: 'me' | 'replay';
}

export interface ChatMessageProps {
  data: ChatProps[];
}
