theatre/packages/playground/src/index.html

28 lines
466 B
HTML
Raw Normal View History

2021-06-18 13:05:06 +02:00
<html>
<head>
<meta charset="UTF-8" />
<title>Playground Theatre.js</title>
<style>
body {
margin: 0;
padding: 0;
height: 100%;
background: black;
2022-02-28 13:15:27 +01:00
color: white;
font-family: sans-serif;
font-size: 12px;
}
a {
color: inherit;
2021-06-18 13:05:06 +02:00
}
</style>
</head>
<body>
<div id="root"></div>
2022-02-28 13:15:27 +01:00
<script type="module" src="./index.tsx"></script>
2021-06-18 13:05:06 +02:00
</body>
</html>