Files
stream.ui/src/client.ts
2025-12-31 17:18:50 +07:00

12 lines
288 B
TypeScript

import { createApp } from './main';
import 'uno.css';
async function render() {
const { app, router } = createApp();
router.isReady().then(() => {
app.mount('body', true)
})
}
render().catch((error) => {
console.error('Error during app initialization:', error)
})