UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

16 lines (12 loc) 238 B
import { type ChildDom } from "vanjs-core"; import Nav from "./Nav"; type LayoutProps = { children: ChildDom[]; }; const Layout = ({ children }: LayoutProps) => { return [ Nav(), ...children, ]; }; export default Layout;