// =================== // © AngelaMos | 2025 // App.tsx // =================== import { Route } from '@solidjs/router' import { type Component, lazy } from 'solid-js' const Home = lazy(() => import('./pages/Home')) const Register = lazy(() => import('./pages/Register')) const Login = lazy(() => import('./pages/Login')) const Chat = lazy(() => import('./pages/Chat')) const NotFound = lazy(() => import('./pages/NotFound')) const App: Component = () => { return ( <> ) } export default App