mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 06:42:26 +00:00
Co-authored-by: adamdotdevin <2363879+adamdottv@users.noreply.github.com> Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com>
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
import { type ParentProps } from "solid-js"
|
|
|
|
export default function Layout(props: ParentProps) {
|
|
return <main class="">{props.children}</main>
|
|
}
|