以下のコードで型エラーを修正するために必要な変更はどれですか? ```tsx const [users, setUsers] = useState([]); // エラー: Property 'name' does not exist users.map(user => user.name) ```