- Router: client side route handling with client side rendering - Toast: rought Toast handling for better UX and messaging - Auth: single point of truth for the Logged in user This commit doesnt not include the openapi generated code
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { setTitle, handleRoute } from '@app/routing';
|
|
import './root/root.ts'
|
|
import './chat/chat.ts'
|
|
import './login/login.ts'
|
|
|
|
// ---- Initial load ----
|
|
setTitle("");
|
|
handleRoute();
|