Как отобразить всплывающую подсказку, если в моем компоненте textinput - reactjs es5 введена цифра?
Мой компонент textinput приведен ниже: const React = require('react') module.exports = (props) => { return ( <div> <input id={props.id} type="text" title={props.placeholder} onBlur={e => props.onBlur(props.fieldName, e.target.value...