Transcript
00:00 We've got this application here that is loading some data from a server and we can actually control how quick that data loading is by, in this get ship call, it accepts the second argument just for our development purposes, which is the delay, like how long it takes
00:18 for this request to happen. And so if we set that to be two seconds, we're just looking at a white screen for a long time. It'd be nice if we could get some pending UI in there, that would be a good thing. And we use suspense for that pending UI. So your job is to add a suspense boundary for our components so that we can at least
00:35 show some fancy suspense based loading state for while we're loading this data. It's going to require a little bit of refactoring in the way that we're doing things now. We don't want to await the getting the ship, but we want to use that promise and literally use that promise.
00:53 So that's what you're going to be doing in this step of the exercise. Let's get going.