Proposed syntax:
function App() {
return (
<Table top={10} left={10}>
<TableRow>
<TableCellButton>
Row 1 - Cell 1
</TableCellButton>
<TableCellButton>
Row 1 - Cell 2
</TableCellButton>
</TableRow>
<TableRow>
<TableCellButton>
Row 2 - Cell 1
</TableCellButton>
<TableCellButton>
Row 2 - Cell 2
</TableCellButton>
</TableRow>
</InSim>
);
}
Proposed syntax: