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