streamarr/src/routes/(shell).tsx
2025-03-31 14:49:31 +02:00

7 lines
184 B
TypeScript

import { ParentProps } from "solid-js";
import { Shell } from "~/features/shell";
export default function ShellPage(props: ParentProps) {
return <Shell>{props.children}</Shell>;
}