import { clsn } from "~/utils"; import styles from "./article.module.css"; interface ArticleProps { className?: string; html: string; } function Article({ className, html }: ArticleProps) { return (
); } export default Article;