import { Title } from "@solidjs/meta";
import { type JSXElement, Show } from "solid-js";
import "../styles/Page.sass";
interface Props {
children?: JSXElement;
alignment?: "row" | "column";
title: string;
}
export default (props: Props) => {
return (
<>
{props.title}
{props.children}
{props.title}
{props.children}
>
);
};