import { Route, Routes } from "@solidjs/router"; import { Component, lazy } from "solid-js"; // Only load the components if we are navigating to them const Home = lazy(() => import("./pages/Home")); const Login = lazy(() => import("./pages/Login")); const App: Component = () => { return ( <> ); }; export default App;