mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 20:23:29 +08:00
Add placeholder components to be worked on
This commit is contained in:
8
web/components/CustomPageContent.tsx
Normal file
8
web/components/CustomPageContent.tsx
Normal file
@ -0,0 +1,8 @@
|
||||
interface Props {
|
||||
content: string;
|
||||
}
|
||||
|
||||
export default function CustomPageContent(props: Props) {
|
||||
const { content } = props;
|
||||
return <div>{content}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user