import { Entity } from 'megalodon' import { HTMLAttributes } from 'react' import emojify from '@/utils/emojify' type Props = { status: Entity.Status } & HTMLAttributes export default function Body(props: Props) { return ( <>
) }