easy
+5 XP
FRONTEND

Conditional Rendering

Show different UI based on a loading state prop.
You're exploring as a guest. Create a free account to save progress and submit solutions.
export default function App({ isLoading }) {
  // Render spinner when loading, content when done
}