aics / sandpack.html
akborana4's picture
Create sandpack.html
ae8fbd7 verified
raw
history blame contribute delete
406 Bytes
<!DOCTYPE html>
<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>