FrostByte/client-solid/src/Containers/PageContainer.tsx

11 lines
280 B
TypeScript
Raw Normal View History

2023-11-22 21:14:36 +01:00
import { JSXElement } from "solid-js";
// MainContainer is the main container for the page.
export function PageContainer(props: { children: JSXElement }): JSXElement {
return (
2023-11-24 02:37:50 +01:00
<div class="flex min-h-screen flex-col items-center">
2023-11-22 21:14:36 +01:00
{props.children}
</div>
);
}