mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-14 10:01:09 -05:00
28 lines
750 B
HTML
28 lines
750 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
|
|
<title>Svelte app</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="../build/pyscript.css" />
|
|
|
|
<script defer src="../build/pyscript.js"></script>
|
|
</head>
|
|
|
|
<body class="w-screen">
|
|
<div class="w-full h-full flex divide-x">
|
|
<div class="w-2/3 p-4">
|
|
<h1 class="text-4xl">REPL Demo</h1>
|
|
<py-repl id="my-repl" auto-generate="true" target="output"> </py-repl>
|
|
</div>
|
|
<div class="w-1/3 p-4">
|
|
<h1 class="text-4xl">Output</h1>
|
|
<div id="output"></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|