0
owncast/web/components/CustomPageContent.tsx

9 lines
160 B
TypeScript
Raw Normal View History

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