z-react-dynamic-form
Version:
A dynamic form builder for React applications with various input types and validation
11 lines (10 loc) • 401 B
TypeScript
import React from "react";
import { Controller } from "../types";
import { ControllerRenderProps, UseFormReturn } from "react-hook-form";
type DefaultInputControllerProps = {
controller: Controller;
field: ControllerRenderProps<any, any>;
form: UseFormReturn<any, any>;
};
declare const DefaultInputController: React.FC<DefaultInputControllerProps>;
export default DefaultInputController;