Course Content
Next.js 14
Next.js 14
Challenge: Skeleton Loader
Your turn! Apply what you've just learned by refactoring the <LatestInvoices>
component.
- Move the
fetchLatestInvoices()
function down from the page to the<LatestInvoices>
component; - Surround the component with a
<Suspense>
boundary, providing a fallback called<LatestInvoicesSkeleton>
.
In Practice
Thanks for your feedback!