Transcript

Instructor: 0:00 Let's do some data fetching with React Suspense and Concurrent Mode. Here, I give you a little quick example of what the Suspense API looks like right now, and I give you an idea of what we normally do with React and useEffect for doing data fetching. I also give you a link to React Suspense API, and a little quick rundown of promises. All of these things, you're going to want to know.

0:23 For our exercise, we have this little example here. The final version renders out Pikachu and Pikachu's information. Your responsibility is not the UI specifically but getting data into this UI. We start you out with regular ‎Pokémon filler data stuff.

0:43 You're supposed to make a ‎Pokémon request here, so you can get the Pokémon data. You're going to be doing it a little bit differently than you're used to, so prepare for that.

0:53 We also do have some extra credits in here like error boundaries for handling errors, which will be fun, and making a generic utility for this stuff. You'll enjoy this. It is kind of fun. There's definitely some experimental edges that we're going to be touching around here, but you'll learn a lot.

1:10 Have a good time. I'll see you on the other side of the exercise.