我在tsx
组件中使用以下代码。我还不熟悉correct layout options。
我有一个working sandbox。
import React from "react";
import { ArrowDropUp, ArrowDropDown } from "@material-ui/icons";
import { withStyles } from "@material-ui/core/styles";
function SvgMaterialIcons(props) {
const { classes } = props;
return (
<table>
<thead>
<tr>
<td>
TITLE <ArrowDropUp /> <ArrowDropDown />
</td>
</tr>
<tr>
<td>
<input type="text" />
</td>
</tr>
</thead>
</table>
);
}
我应该在material.ui中使用哪个布局组件来将排序图标彼此对齐?