Files
v10/packages/sandbox/templates/react-background/index.html
T

23 lines
814 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sandbox — React Background</title>
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<a
id="home-link"
href="/"
class="fixed top-3 left-3 hidden text-xs font-mono text-neutral-600 hover:text-neutral-900 transition-colors bg-white/85 backdrop-blur-sm px-2.5 py-1 rounded-full border border-black/8 z-[9999]"
>&larr; More examples</a
>
<script>
if (window.self === window.top) document.getElementById('home-link').style.display = 'inline';
</script>
<div id="root" style="width: 100vw; height: 100vh"></div>
<script type="module" src="./background.tsx"></script>
</body>
</html>