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:
csawatzky 2025-04-11 10:57:12 -06:00
parent cdad408152
commit 2816884771
5 changed files with 228 additions and 0 deletions

14
src/pages/Fields.tsx Normal file
View 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>
);
}