strudel/website/src/pages/index.astro
2023-02-19 20:04:30 +01:00

15 lines
302 B
Plaintext

---
import HeadCommon from '../components/HeadCommon.astro';
import { Repl } from '../repl/Repl.jsx';
---
<html lang="en" class="dark">
<head>
<HeadCommon />
<title>Strudel REPL</title>
</head>
<body class="h-app-height bg-background">
<Repl client:only="react" />
</body>
</html>