import React from 'react' import Breadcrumb from '../../components/common/Breadcrumb' import AdvancePaymentList1 from '../../components/AdvancePayment/AdvancePaymentList' import { useForm } from 'react-hook-form'; import EmployeeSearchInput from '../../components/common/EmployeeSearchInput'; const AdvancePaymentPage = () => { const { control, reset, watch } = useForm({ defaultValues: { searchString: "", }, }); const searchString = watch("searchString"); return (
) } export default AdvancePaymentPage