| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| </head> | |
| <body> | |
| <div id="root"></div> | |
| <script type="module"> | |
| import { SandpackClient } from "https://cdn.skypack.dev/@codesandbox/sandpack-client"; | |
| const files = await fetch("/workspace_snapshot.json").then(r => r.json()); | |
| new SandpackClient( | |
| document.getElementById("root"), | |
| { | |
| files, | |
| template: "react" | |
| } | |
| ); | |
| </script> | |
| </body> | |
| </html> |