mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-24 14:55:19 +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>
|
|
}
|