"use client"; import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, } from "@/components/ui/form"; import { harvestDetailsFormSchema } from "@/schemas/application.schema"; import { useForm } from "react-hook-form"; import { z } from "zod"; import { zodResolver } from "@hookform/resolvers/zod"; import { Input } from "@/components/ui/input"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; type harvestSchema = z.infer; export default function HarvestDetailsForm() { const form = useForm({ resolver: zodResolver(harvestDetailsFormSchema), defaultValues: {}, }); return (
( Days To Flower
)} /> ( Days To Maturity
)} /> ( Harvest Window
)} /> ( Estimated Loss Rate
)} /> ( Harvest Units )} /> ( Estimated Revenue
)} /> ( Expected Yield Per100ft
)} /> ( Expected Yield Per Acre
)} /> ); }