not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
282 B

import React from 'react';
import User from './User'
export default (props) => {
var users = props.users;
var userList = users.map((user) =>
<User name={user.name} score={user.score} word={user.word}>
);
return(
<div>
<ol> {userList} </ol>
</div>
);
}