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