mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 01:10:01 +00:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
type Properties = {
|
|
content: string;
|
|
};
|
|
|
|
const PostBody = ({ content }: Properties): JSX.Element => {
|
|
return (
|
|
<div className="max-w-2xl mx-auto">
|
|
<div dangerouslySetInnerHTML={{ __html: content }} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PostBody;
|