import { Box, Typography } from "@mui/material"; interface Props { isSelf: boolean; text: string; time: string; } export default function Message({ isSelf, text, time }: Props) { return ( {time} {text} ); }