webapp/src/pages/create.astro

14 lines
246 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
---
2022-09-22 09:37:49 +00:00
import { Root } from '../components/Root'
2022-09-09 11:53:35 +00:00
import Zine from '../layouts/zine.astro'
2022-09-23 18:27:05 +00:00
import { initRouter } from '../stores/router'
const { pathname, search } = Astro.url
initRouter(pathname, search)
2022-09-09 11:53:35 +00:00
---
<Zine>
2022-09-22 09:37:49 +00:00
<Root client:load />
2022-09-09 11:53:35 +00:00
</Zine>