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