7 lines
184 B
TypeScript
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>;
|
|
}
|