-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.89 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<!-- TanStack Playground static shell: theme script, root mount. -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="https://render.com/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TanStack Playground</title>
<meta name="description" content="Test TanStack Query & Table with any public API. See caching, loading states, sorting, filtering, and pagination in real time." />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="TanStack Playground" />
<meta property="og:description" content="Paste any public API URL and watch TanStack Query fetch, cache, and refetch data in real time. TanStack Table auto-detects columns with sorting, filtering, and pagination." />
<meta property="og:url" content="https://tanstack-playground.onrender.com" />
<meta property="og:image" content="https://tanstack-playground.onrender.com/og-image.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="TanStack Playground" />
<meta name="twitter:description" content="Paste any public API URL and watch TanStack Query fetch, cache, and refetch data in real time. TanStack Table auto-detects columns with sorting, filtering, and pagination." />
<meta name="twitter:image" content="https://tanstack-playground.onrender.com/og-image.png" />
<script>
// Prevent flash: apply theme before paint
(function() {
var t = localStorage.getItem("theme");
if (t === "dark" || (!t && matchMedia("(prefers-color-scheme: dark)").matches)) {
document.documentElement.classList.add("dark");
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>