質問編集履歴
1
index.html の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -117,3 +117,69 @@
|
|
117
117
|
|
118
118
|
|
119
119
|
```
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
```
|
128
|
+
|
129
|
+
index.html
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
<!DOCTYPE html>
|
136
|
+
|
137
|
+
<html lang="en">
|
138
|
+
|
139
|
+
<head>
|
140
|
+
|
141
|
+
<meta charset="utf-8" />
|
142
|
+
|
143
|
+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
144
|
+
|
145
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
146
|
+
|
147
|
+
<meta name="theme-color" content="#000000" />
|
148
|
+
|
149
|
+
<meta
|
150
|
+
|
151
|
+
name="description"
|
152
|
+
|
153
|
+
content="Web site created using create-react-app"
|
154
|
+
|
155
|
+
/>
|
156
|
+
|
157
|
+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
<title>React App</title>
|
166
|
+
|
167
|
+
</head>
|
168
|
+
|
169
|
+
<body>
|
170
|
+
|
171
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
172
|
+
|
173
|
+
<div id="root"></div>
|
174
|
+
|
175
|
+
<script src="./bundle.js"></script>
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
</body>
|
180
|
+
|
181
|
+
</html>
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
```
|