質問編集履歴
3
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -55,7 +55,7 @@
|
|
55
55
|
"@types/react-dom": "^16.9.8",
|
56
56
|
"@types/react-router-dom": "^5.1.6",
|
57
57
|
"react": "^16.8.0",
|
58
|
-
"react-router-dom": "^5.2.0",
|
58
|
+
"react-router-dom": "^5.2.0", ※問題解決後
|
59
59
|
"react-dom": "^16.8.0",
|
60
60
|
"react-scripts": "4.0.0",
|
61
61
|
"typescript": "^4.0.3",
|
2
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -55,6 +55,7 @@
|
|
55
55
|
"@types/react-dom": "^16.9.8",
|
56
56
|
"@types/react-router-dom": "^5.1.6",
|
57
57
|
"react": "^16.8.0",
|
58
|
+
"react-router-dom": "^5.2.0",
|
58
59
|
"react-dom": "^16.8.0",
|
59
60
|
"react-scripts": "4.0.0",
|
60
61
|
"typescript": "^4.0.3",
|
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -34,4 +34,56 @@
|
|
34
34
|
|
35
35
|
この場合、次に確認すべきことはどのようなことなのでしょうか?
|
36
36
|
ざっくりした質問にて恐縮ですが、ご回答いただけますと幸いでございます。
|
37
|
-
よろしくお願いいたします。※情報に不足等あれば、その旨ご教示ください。
|
37
|
+
よろしくお願いいたします。※情報に不足等あれば、その旨ご教示ください。
|
38
|
+
|
39
|
+
### 追記
|
40
|
+
package.jsonは以下です。
|
41
|
+
```ここに言語を入力
|
42
|
+
{
|
43
|
+
"name": "hogehoge",
|
44
|
+
"version": "0.1.0",
|
45
|
+
"private": true,
|
46
|
+
"dependencies": {
|
47
|
+
"@material-ui/core": "^4.11.0",
|
48
|
+
"@material-ui/icons": "^4.9.1",
|
49
|
+
"@testing-library/jest-dom": "^5.11.5",
|
50
|
+
"@testing-library/react": "^11.1.0",
|
51
|
+
"@testing-library/user-event": "^12.1.10",
|
52
|
+
"@types/jest": "^26.0.15",
|
53
|
+
"@types/node": "^12.19.1",
|
54
|
+
"@types/react": "^16.9.53",
|
55
|
+
"@types/react-dom": "^16.9.8",
|
56
|
+
"@types/react-router-dom": "^5.1.6",
|
57
|
+
"react": "^16.8.0",
|
58
|
+
"react-dom": "^16.8.0",
|
59
|
+
"react-scripts": "4.0.0",
|
60
|
+
"typescript": "^4.0.3",
|
61
|
+
"web-vitals": "^0.2.4"
|
62
|
+
},
|
63
|
+
"scripts": {
|
64
|
+
"start": "react-scripts start",
|
65
|
+
"build": "react-scripts build",
|
66
|
+
"test": "react-scripts test",
|
67
|
+
"eject": "react-scripts eject"
|
68
|
+
},
|
69
|
+
"eslintConfig": {
|
70
|
+
"extends": [
|
71
|
+
"react-app",
|
72
|
+
"react-app/jest"
|
73
|
+
]
|
74
|
+
},
|
75
|
+
"browserslist": {
|
76
|
+
"production": [
|
77
|
+
">0.2%",
|
78
|
+
"not dead",
|
79
|
+
"not op_mini all"
|
80
|
+
],
|
81
|
+
"development": [
|
82
|
+
"last 1 chrome version",
|
83
|
+
"last 1 firefox version",
|
84
|
+
"last 1 safari version"
|
85
|
+
]
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
```
|