const handleChange = (e: any) => { handleSubmit(e);}
I have controller inputs, I need that whenever an input is changed, it automatically submits, because I won't have a button. How can I do this?
const handleChange = (e: any) => { handleSubmit(e);}
I have controller inputs, I need that whenever an input is changed, it automatically submits, because I won't have a button. How can I do this?