"use client"; import { Button, Input } from "@heroui/react"; import React from "react"; import { useFormContext } from "react-hook-form"; const Step1ProvisionRegister = ({ NextStep }: { NextStep: () => void }) => { const { register, formState: { errors }, } = useFormContext(); return (
); }; export default Step1ProvisionRegister;