FrostByte/client-solid/src/Containers/PageContainer.tsx
2024-03-11 22:05:49 +01:00

8 lines
268 B
TypeScript

import { JSXElement } from "solid-js";
// MainContainer is the main container for the page.
export function PageContainer(props: { children: JSXElement }): JSXElement {
return (
<div class="flex min-h-screen flex-col items-center">{props.children}</div>
);
}