質問編集履歴
1
index.html の追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -57,4 +57,37 @@
|
|
57
57
|
|
58
58
|
registerServiceWorker();
|
59
59
|
|
60
|
+
```
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
```
|
65
|
+
index.html
|
66
|
+
|
67
|
+
|
68
|
+
<!DOCTYPE html>
|
69
|
+
<html lang="en">
|
70
|
+
<head>
|
71
|
+
<meta charset="utf-8" />
|
72
|
+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
73
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
74
|
+
<meta name="theme-color" content="#000000" />
|
75
|
+
<meta
|
76
|
+
name="description"
|
77
|
+
content="Web site created using create-react-app"
|
78
|
+
/>
|
79
|
+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
80
|
+
|
81
|
+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
82
|
+
|
83
|
+
<title>React App</title>
|
84
|
+
</head>
|
85
|
+
<body>
|
86
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
87
|
+
<div id="root"></div>
|
88
|
+
<script src="./bundle.js"></script>
|
89
|
+
|
90
|
+
</body>
|
91
|
+
</html>
|
92
|
+
|
60
93
|
```
|