mirror of
https://github.com/ForFarmTeam/ForFarm.git
synced 2025-12-19 14:04:08 +01:00
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import PlantingDetailsForm from "./planting-detail-form";
|
|
import { Separator } from "@/components/ui/separator";
|
|
|
|
export default function SetupPage() {
|
|
return (
|
|
<div className="p-5">
|
|
<h1 className="text-2xl">Plating Details</h1>
|
|
<Separator className="mt-3" />
|
|
<div className="mt-3">
|
|
<PlantingDetailsForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|