gale/index.html

16 lines
529 B
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="root"></div>
<script type="module">
import Compat from "react-original";
import React from "react";
import App from "/app.tsx";
Compat.render(React.createElement(()=>React.createElement(App)), document.querySelector("#root"))
</script>
</body>
</html>