mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-20 01:48:30 +00:00
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
---
|
|
import HeadCommonNext from '../components/HeadCommonNext.astro';
|
|
import { Repl } from '../repl/Repl';
|
|
---
|
|
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<HeadCommonNext />
|
|
<title>Strudel REPL</title>
|
|
</head>
|
|
<body class="h-app-height bg-background">
|
|
<Repl client:only="react" />
|
|
</body>
|
|
</html>
|