UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

10 lines (8 loc) 240 B
import van from "vanjs-core"; import type { LayoutProps } from "../types/types"; export function Layout({ Page /*, pageContext*/ }: LayoutProps) { const { main } = van.tags; return main({ id: "main", }, Page() as HTMLElement); }