ignore: cloud

This commit is contained in:
Jay V
2025-08-28 17:17:00 -04:00
parent 4d81f90dde
commit 403f9b2f1b
2 changed files with 11 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
import { RouteSectionProps } from "@solidjs/router";
export default function WorkspaceLayout(props: RouteSectionProps) {
return (
<div>
<h1>Workspace</h1>
{props.children}
</div>
);
}