質問編集履歴
1
情報を追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,4 +16,58 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
+
index.htmlのコードを貼り付けておきます。
|
20
|
+
|
21
|
+
```html
|
22
|
+
|
23
|
+
<!DOCTYPE html>
|
24
|
+
|
25
|
+
<html lang="en">
|
26
|
+
|
27
|
+
<head>
|
28
|
+
|
29
|
+
<meta charset="utf-8" />
|
30
|
+
|
31
|
+
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
32
|
+
|
33
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
34
|
+
|
35
|
+
<meta name="theme-color" content="#000000" />
|
36
|
+
|
37
|
+
<meta
|
38
|
+
|
39
|
+
name="description"
|
40
|
+
|
41
|
+
content="Web site created using create-react-app"
|
42
|
+
|
43
|
+
/>
|
44
|
+
|
45
|
+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
46
|
+
|
47
|
+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
48
|
+
|
49
|
+
<title>React App</title>
|
50
|
+
|
51
|
+
</head>
|
52
|
+
|
53
|
+
<body>
|
54
|
+
|
55
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
56
|
+
|
57
|
+
<div id="root"></div>
|
58
|
+
|
59
|
+
</body>
|
60
|
+
|
61
|
+
</html>
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
firebaseで公開しています。
|
70
|
+
|
71
|
+
|
72
|
+
|
19
73
|
HPのリンク https://rowing-hp-10839.firebaseapp.com/
|