質問編集履歴
3
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
|
36
36
|
|
37
|
-
const QuoteFrom: React.VFC<Props> = ({ initialQuote, mutate
|
37
|
+
const QuoteFrom: React.VFC<Props> = ({ initialQuote, mutate }) => {
|
38
38
|
|
39
39
|
const onSubmit = async (data) => {
|
40
40
|
|
2
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
if (success) {
|
46
46
|
|
47
|
-
|
47
|
+
...
|
48
48
|
|
49
49
|
}
|
50
50
|
|
1
表現の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
|
5
|
+
postQuote関数とupdateQuote関数のどちらかを`mutate`で受け取り、編集の場合には初期値である`initialQuote`を受け取るフォームコンポーネントを作成しました。
|
6
6
|
|
7
7
|
|
8
8
|
|