Quiz: Setting up the Frontend and Creating the React Components
Test your knowledge about creating React components.
We'll cover the following...
We'll cover the following...
Quiz
1.
(Fill in the blank.) In the following code useState is a React ________.
const BooksList = props => {
const [books, setBooks] = useState([])
const [searchTitle, setSearchTitle] = useState("")
}
A.
package
B.
library
C.
component
D.
hook
1 / 5
...