z-react-dynamic-form
Version:
A dynamic form builder for React applications with various input types and validation
12 lines (11 loc) • 392 B
TypeScript
import React from "react";
import { ControllerRenderProps } from "react-hook-form";
import { z } from "zod";
import { Controller } from "../../types";
type SingleDatePickerProps = {
field: ControllerRenderProps<z.TypeOf<any>, any>;
controller?: Controller;
onClose?: () => void;
};
declare const SingleDatePicker: React.FC<SingleDatePickerProps>;
export default SingleDatePicker;