我有一种好奇,就像必须为三元运算符内的conda install powershell_shortcut
元素申请父项
conda init
答案 0 :(得分:1)
您应该使用Fragment包装多个tds。
import { Fragment } from 'react';
<tr>
<td>id</td>
<td>name</td>
{
row.author == 'anonymous' ?
<td colspan="2">anonymous</td>
:
<Fragment>
<td>{row.author}</td>
<td>{row.firstName+' '+row.lastName}</td>
</Fragment>
}
</tr>