fast-web/examples/client-renderer/index.html

28 lines
477 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Client Renderer</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
<style>
body {
background-color: black;
color: white;
}
button {
background-color: black;
color: white;
border: 1px solid white;
}
</style>
</body>
</html>