38 lines
697 B
HTML
38 lines
697 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Excalidraw</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#root {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" crossorigin href="./render.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module">
|
|
import { render } from './render.js';
|
|
console.log('render', render);
|
|
const opts = {
|
|
renderRoot: document.getElementById('root'),
|
|
}
|
|
render(opts);
|
|
</script>
|
|
</body>
|
|
|
|
</html> |