import type { Post } from "../../../types/post"; import { useI18n } from "../../../i18n"; import { autolink } from "../utils/autolink"; import { postDisplayText } from "../utils/postText"; export function TextBubble({ post }: { post: Post }) { const { lang } = useI18n(); return (
{autolink(postDisplayText(post, lang))}
); }