15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
---
|
|
import Html from '../components/html.astro';
|
|
import { DashboardApp } from '../apps/login/DashboardApp.tsx';
|
|
---
|
|
|
|
<Html>
|
|
<head>
|
|
<title>仪表板 - Light Code Center</title>
|
|
<meta name='description' content='用户仪表板' />
|
|
</head>
|
|
<body>
|
|
<DashboardApp client:only />
|
|
</body>
|
|
</Html>
|