Files
owncast/web/components/CustomPageContent.tsx
2022-04-28 14:36:05 -07:00

9 lines
193 B
TypeScript

interface Props {
content: string;
}
export default function CustomPageContent(props: Props) {
const { content } = props;
return <div dangerouslySetInnerHTML={{ __html: content }} />;
}