web/components/ArticleContent/index.jsx

16 lines
382 B
React
Raw Normal View History

2025-03-08 11:18:25 +03:30
export default function ArticleContent({ htmlContent, type }) {
return (
<div
className={` ${
type == "pdp"
? "w-full px-5"
: "xs:w-full lg:w-9/12 py-8 px-10 min-h-screen"
} mx-auto `}
>
2025-03-09 12:01:48 +03:30
<div className="prose max-w-none rtl">
2025-03-08 11:18:25 +03:30
<div dangerouslySetInnerHTML={{ __html: htmlContent }} />
</div>
</div>
);
}