webapp/src/pages/confirm/[token].astro
2022-10-05 20:17:38 +03:00

12 lines
219 B
Plaintext

---
import { Confirmed } from '../../components/Nav/Confirmed'
const token = Astro.params.token?.toString() || ''
---
<html>
<head><title>discours.io</title></head>
<body>
<Confirmed token={token} />
</body>
</html>