strudel/website/src/pages/embed.astro
2022-12-29 21:01:28 +01:00

15 lines
253 B
Plaintext

---
import HeadCommon from '../components/HeadCommon.astro';
import { Repl } from '../repl/Repl.jsx';
---
<html>
<head>
<HeadCommon />
<title>Strudel REPL</title>
</head>
<body>
<Repl client:only="react" embedded />
</body>
</html>