React Hook Form Context
npm install react-hook-form-contextCreate Context
``js
const FormContext = createFormContext({
param: "",
});
function App() {
return (
...rest
);
}
//In your Component
const { param } = FormContext.useWatch();
render={({field})=>}
/>
``