Add forest position data as part of the plant results

This commit is contained in:
Dana Lambert 2021-11-10 10:33:34 +13:00
parent 4745ed578a
commit 41d61ce3c5
4 changed files with 15 additions and 9 deletions

View file

@ -78,7 +78,7 @@ TablePaginationActions.propTypes = {
rowsPerPage: PropTypes.number.isRequired,
};
export default function CustomPaginationActionsTable(props) {
export default function PlantResultsTable(props) {
const [page, setPage] = React.useState(0);
const [rowsPerPage, setRowsPerPage] = React.useState(5);
@ -101,10 +101,10 @@ export default function CustomPaginationActionsTable(props) {
<TableHead>
<TableRow>
<TableCell>Names</TableCell>
<TableCell align="right">Growth form/max height&nbsp;(m)/spacing&nbsp;(m)</TableCell>
<TableCell align="right">Preferred&nbsp;moisture&nbsp;regime</TableCell>
<TableCell align="right">Tolerances</TableCell>
<TableCell align="right">Ecosystem&nbsp;services</TableCell>
<TableCell align="right">Growth Form / Max Height (m) / Spacing (m) / Forest Position</TableCell>
<TableCell align="right">Moisture Preferences</TableCell>
<TableCell align="right">Tolerances (Water / Drought / Frost / Salinity)</TableCell>
<TableCell align="right">Ecosystem Services</TableCell>
<TableCell align="right">Carbon Sequestration Rate</TableCell>
<TableCell align="right">Planting Stage</TableCell>
</TableRow>