-
-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 1.99 KB
/
index.html
File metadata and controls
57 lines (54 loc) · 1.99 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/emblem-light.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="og:image"
content="https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800"
/>
<meta name="og:title" content="Basic Example - TanStack Devtools" />
<meta
name="og:description"
content="A basic example of using TanStack Devtools with React and loading up the social previews"
/>
<meta name="og:url" content="https://example.com/basic" />
<meta
name="twitter:image"
content="https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800"
/>
<meta name="twitter:title" content="Basic Example - TanStack Devtools" />
<meta
name="twitter:description"
content="A basic example of using TanStack Devtools with React and loading up the social previews"
/>
<meta name="twitter:url" content="https://example.com/basic" />
<script src="https://unpkg.com/react-scan/dist/auto.global.js"></script>
<title>Basic Example - TanStack Devtools</title>
<meta
name="description"
content="A basic example of using TanStack Devtools with React."
/>
<meta name="robots" content="index, follow" />
<link rel="canonical" href="http://localhost:3005" />
<description
>A basic example of using TanStack Devtools with React.</description
>
</head>
<body>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "TanStack Devtools",
"url": "https://tanstack.com/devtools",
"logo": "https://tanstack.com/devtools/logo.png"
}
</script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>