medium
+15 XP
FRONTEND

useEffect Data Fetch

Fetch and display user data on mount with loading and error states.
You're exploring as a guest. Create a free account to save progress and submit solutions.
import { useState, useEffect } from 'react';

export default function UserProfile({ userId }) {
  // Fetch user data and display
}