我正在处理我MDBTable
从mdbreact
库中使用的 reactjs 应用程序
我当前的表看起来像下面的代码
<MDBTable
className="bs-group"
scrollY
maxHeight="350px"
responsive
bordered
>
{this.props.groupList?.length > 0 ? (
<MDBTableBody rows={this.props.groupList} />
) : (
<MDBTableBody>
<tr>
<td colSpan={3}>No Records Found</td>
</tr>
</MDBTableBody>
)}
</MDBTable>
我必须在选择任何行时添加类,我检查了 mdbreact 的文档,但找不到正确的答案。
任何人都可以帮助我吗?