-
-
Notifications
You must be signed in to change notification settings - Fork 320
/
index.html
31 lines (31 loc) · 971 Bytes
/
index.html
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=720" />
<meta property="og:type" content="website" />
<meta property="og:title" content="React Lifecycle Methods diagram" />
<meta
property="og:url"
content="https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/"
/>
<meta
property="og:image"
content="https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/ogimage.png"
/>
<meta
property="og:description"
content="Fully interactive and accessible React Lifecycle Methods diagram."
/>
<meta
name="description"
content="Fully interactive and accessible React Lifecycle Methods diagram."
/>
<title>React lifecycle methods diagram</title>
<link rel="icon" href="favicon.ico" />
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>