import van from "vanjs-core"; import Counter from "./components/Counter"; import "./App.css"; const App = () => { return ( <>

Hello VanJS!

Click on the VanJS logo to learn more

); }; const root = document.getElementById("app") as HTMLElement; van.add(root, );