controlled-componentsReactControlled ComponentsMediumHow do you typically read the value of an uncontrolled input?1Via a ref (or on submit), with defaultValue for the initial value2Via the component's state value prop3By calling useMemo on the input4It cannot be read at allBack to list