const SearchList = ({ lists, users }) =>
{
return (
<table>
<thead>
<tr>
<th>项目</th>
<th>负责人</th>
</tr>
</thead>
<tbody>
{
lists.map(project =>
<tr>
<td>{project.name}</td>
<td>{users.find(user => user.id === project.personId)?.name}</td>
</tr>
)
}
</tbody>
</table>
)
}
export default SearchList