mirror of
https://codeberg.org/uzu/strudel
synced 2026-08-03 05:56:34 -04:00
818cd9044b
+ update build and setup tasks + workflow + move repl test folder to root + move docs and repl to website/src
15 lines
244 B
Plaintext
15 lines
244 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" />
|
|
</body>
|
|
</html>
|