如何在React js中显示表格数据以及复选框和文件夹图标?
当我将鼠标悬停在表格数据中的特定项目上时,我还需要显示该复选框。
class Data extends Component {
constructor(props) {
super(props);
this.state = {
selected: null
}
}
render () {
return
(
<div classname="container">
<table>
<th>Name</th>
<th>Created</th>
<th>Updated</th>
<tr>
<td>Folder1<//td>
<td>12th May 2019></td>
<td>13th May 2019></td>
</tr>
</table>
</div>
);
}
}
export default Data;