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

27 lines
752 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</title>
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<a
id="home-link"
href="/"
class="fixed top-3 left-4 hidden items-center text-xs font-mono text-neutral-400 hover:text-neutral-700 transition-colors"
aria-label="Back to sandbox home"
>
&larr; More examples
</a>
<script>
if (window.self === window.top) {
document.getElementById('home-link').style.display = 'inline';
}
</script>
<div id="root"></div>
<script type="module" src="./main.tsx"></script>
</body>
</html>