import { clsx } from 'clsx' import styles from './Message.module.scss' type Props = { body: string isOwn: boolean } const Message = (props: Props) => { return (
{props.body}
) } export default Message