回答編集履歴
1
テキスト修正
answer
CHANGED
@@ -6,13 +6,13 @@
|
|
6
6
|
|
7
7
|
```typescript
|
8
8
|
type Book = {
|
9
|
-
id: string
|
9
|
+
id: string
|
10
10
|
volumeInfo: {
|
11
|
-
title: string
|
11
|
+
title: string
|
12
|
-
publisher: string
|
12
|
+
publisher: string
|
13
|
-
publishedDate: string
|
13
|
+
publishedDate: string
|
14
|
-
}
|
14
|
+
}
|
15
|
-
}
|
15
|
+
}
|
16
16
|
|
17
17
|
export default Book;
|
18
18
|
```
|
@@ -52,7 +52,7 @@
|
|
52
52
|
};
|
53
53
|
```
|
54
54
|
|
55
|
-
以下は上記の修正版を動作確認するためのサンプルです。
|
55
|
+
以下は上記の修正版を動作確認するためのサンプルです。`SearchResults` は動作確認のための簡単なもので、`<table>`で作りました。
|
56
56
|
|
57
57
|
- **動作確認用サンプル:** [https://codesandbox.io/s/q295714-kkthj](https://codesandbox.io/s/q295714-kkthj)
|
58
58
|
|