2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <title>WALNUTS sampler</title>
7 <style>
8 html,
9 body,
10 #root {
11 margin: 0;
12 height: 100%;
13 width: 100%;
14 overflow: hidden;
15 }
16 </style>
17 </head>
18 <body>
19 <div id="root"></div>
20 <script type="module" src="/src/main.tsx"></script>
21 </body>
22</html>