mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 03:54:54 +08:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
interface Props {
|
|
content: string;
|
|
}
|
|
|
|
export default function CustomPageContent(props: Props) {
|
|
const { content } = props;
|
|
return <div>{content}</div>;
|
|
}
|