added fields list page, left out the harvest plan table as i would like to re-do and this is a good oppurtunity (if people want it)
This commit is contained in:
parent
cdad408152
commit
2816884771
5 changed files with 228 additions and 0 deletions
14
src/pages/Fields.tsx
Normal file
14
src/pages/Fields.tsx
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import React from "react";
|
||||
import PageContainer from "./PageContainer";
|
||||
import FieldList from "field/FieldList";
|
||||
import { Box } from "@mui/material";
|
||||
|
||||
export default function Fields() {
|
||||
return (
|
||||
<PageContainer>
|
||||
<Box padding={2}>
|
||||
<FieldList />
|
||||
</Box>
|
||||
</PageContainer>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue