UNPKG

create-vanjs

Version:

🍦 Quick tool for scaffolding your first VanJS project

12 lines (8 loc) 209 B
import van from "vanjs-core"; import { Router } from "@vanjs/router"; import "./App.css"; export const App = () => { return Router(); }; const root = document.getElementById("app"); van.add(root, App());