Skip to content

Commit b4ebf3d

Browse files
authored
Update part8b.md
Since the following code shows the person's name and phone number <div> <h2>Persons</h2> {persons.map(p => <div key={p.name}> {p.name} {p.phone} </div> )} </div> The previous text needs to be modified.
1 parent cc48f1f commit b4ebf3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/8/en/part8b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ ReactDOM.createRoot(document.getElementById('root')).render(
109109

110110
### Making queries
111111

112-
We are ready to implement the main view of the application, which shows a list of phone numbers.
112+
We are ready to implement the main view of the application, which shows a list of person's name and phone number.
113113

114114
Apollo Client offers a few alternatives for making [queries](https://www.apollographql.com/docs/react/data/queries/).
115115
Currently, the use of the hook function [useQuery](https://www.apollographql.com/docs/react/api/react/hooks/#usequery) is the dominant practice.

0 commit comments

Comments
 (0)