Not able to get values of input type using this.refs... how to get that values from input type
export class BusinessDetailsForm extends Component { subm
In case any one is wondering how to implement ref with hooks :
// Import import React, { useRef } from 'react'; const Component = () => { // Create Refs const exemploInput = useRef(); const handleSubmit = (e) => { e.preventDefault(); const inputTest = exampleInput.current.value; } return( Name: }