mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
27 lines
752 B
HTML
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"
|
|
>
|
|
← 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>
|