forked from TanStack/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (43 loc) · 1.6 KB
/
index.html
File metadata and controls
45 lines (43 loc) · 1.6 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
<!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."
/>
<description
>A basic example of using TanStack Devtools with React.</description
>
</head>
<body>
<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>