Files
owncast/web/components/CustomPageContent.tsx
2022-04-27 23:19:45 -07:00

9 lines
160 B
TypeScript

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