Files
newt/playground/index.html
2025-06-17 11:48:01 -07:00

19 lines
472 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, maximum-scale=1" />
<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>