import React from "react"; function UserList(props) { return ( {props.users.map((user) => ( ))}
Name
{user.name}
); } export default UserList;