1 2 3 4 5
import { type ParentProps } from "solid-js" export default function Layout(props: ParentProps) { return <main class="">{props.children}</main> }