Files
newt/playground/index.html
2024-11-05 20:20:20 -08:00

19 lines
455 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Newt Playground</title>
</head>
<body>
<div id="app">
<div class="wrapper">
<div id="editor"></div>
<div id="result"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>