mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 22:31:09 +03:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
interface Props {
|
|
content: string;
|
|
}
|
|
|
|
export default function CustomPageContent(props: Props) {
|
|
const { content } = props;
|
|
return <div dangerouslySetInnerHTML={{ __html: content }} />;
|
|
}
|