Many Changes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { ReactNode } from "react"
|
||||
import styles from "./page-container.module.css"
|
||||
|
||||
interface Props {
|
||||
children: ReactNode;
|
||||
}
|
||||
|
||||
export default function PageContainer(props:Props) {
|
||||
return <div className={`${styles.pagecontainer}`}>
|
||||
{props.children}
|
||||
</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user