Files
strudel/website/src/pages/udels/index.astro
T
Jade (Rose) Rowland 5ca9afa9e8 restored
2024-04-15 19:53:12 -04:00

12 lines
248 B
Plaintext

---
import { Udels } from '../../components/Udels/Udels.jsx';
const { BASE_URL } = import.meta.env;
const baseNoTrailing = BASE_URL.endsWith('/') ? BASE_URL.slice(0, -1) : BASE_URL;
---
<body class="m-0">
<Udels client:only="react" />
</body>