10 lines
280 B
TypeScript
10 lines
280 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>
|
|
);
|
|
}
|