Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined.
import { Input as BInput } from 'react-bulma-components';
const Input = (props) => {
const onChangeHandler = event => {
props.changeValue(event.currentTarget.value)
}
return (
<BInput type="text" value={props.result} onChange={onChangeHandler} readOnly />
)
}
export default Input;