import { Form, FormProps } from "antd"; import React, { PropsWithChildren, useCallback } from "react"; import style from "./form.module.css"; interface IDefaultSearchFormProps extends FormProps {} const DefaultSearchForm = ({ children, ...formProps }: PropsWithChildren) => { const handleFormFailed = useCallback( ({ errorFields }: any) => { formProps.form?.scrollToField(errorFields[0].name); }, [formProps.form] ); return ( className={style["default-form"]} layout="horizontal" requiredMark={false} onFinishFailed={handleFormFailed} labelAlign="left" labelWrap {...formProps} > {children} ); }; export default React.memo(DefaultSearchForm) as typeof DefaultSearchForm;