import { Show } from 'solid-js' import MarkdownIt from 'markdown-it' import { clsx } from 'clsx' import styles from './Message.module.scss' import DialogAvatar from './DialogAvatar' type Props = { body: string isOwn: boolean } const md = new MarkdownIt({ linkify: true }) const Message = (props: Props) => { return (
Message Author
12:24
) } export default Message