import { JSX } from "solid-js"; type ContainerProps = { title: string; children?: JSX.Element; }; const Container = (props: ContainerProps) => { return (