Test Your Knowledge!
Test your knowledge of the concepts covered in this chapter by answering the following questions. You can then compare your answers to examples that can be found at https://github.com/mschwarzmueller/book-react-key-concepts-e2/blob/17-suspense-use/exercises/questions-answers.md:
- What’s the purpose of React’s
Suspense
component? - How do components need to fetch data in order to work with
Suspense
? - How may
Suspense
be used when working with Next.js? - What’s the purpose of the
use()
Hook? - Which kind of promises can be read by the
use()
Hook? - List three ways of using
Suspense
with multiple components.