14 lines
266 B
Plaintext
14 lines
266 B
Plaintext
---
|
|
import InboxPage from '../components/Views/Inbox'
|
|
import About from '../layouts/about.astro'
|
|
|
|
import { initRouter } from '../../stores/router'
|
|
|
|
const { pathname, search } = Astro.url
|
|
initRouter(pathname, search)
|
|
---
|
|
|
|
<About>
|
|
<InboxPage client:load />
|
|
</About>
|