10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
async function SiteLayout(props: React.PropsWithChildren) {
|
|
return (
|
|
<div className={'flex min-h-[100vh] flex-col items-center justify-center'}>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default SiteLayout;
|