14 lines
246 B
Plaintext
14 lines
246 B
Plaintext
---
|
|
import { Root } from '../components/Root'
|
|
import Zine from '../layouts/zine.astro'
|
|
import { initRouter } from '../stores/router'
|
|
|
|
const { pathname, search } = Astro.url
|
|
initRouter(pathname, search)
|
|
|
|
---
|
|
|
|
<Zine>
|
|
<Root client:load />
|
|
</Zine>
|