mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 06:08:34 +00:00
16 lines
400 B
Plaintext
16 lines
400 B
Plaintext
---
|
|
import HeadCommon from '../components/HeadCommon.astro';
|
|
import { Repl } from '../repl/Repl';
|
|
---
|
|
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<HeadCommon />
|
|
<title>Strudel REPL</title>
|
|
</head>
|
|
<body class="h-app-height bg-background">
|
|
<Repl client:only="react" />
|
|
<a rel="me" href="https://social.toplap.org/@strudel" target="_blank" class="hidden">mastodon</a>
|
|
</body>
|
|
</html>
|