mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 05:38:35 +00:00
15 lines
253 B
Plaintext
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>
|