Boa tarde!
Ao utilizar o VALUE do INPUT conforme mostrado no curso... value={this.state.nome}
Ocorre um Warning no console do navegar: Warning: InputCustomizado is changing an uncontrolled input of type text to be controlled. Input elements should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://fb.me/react-controlled-components
Lendo o link indicado no Warning têm uma orientação para usar o VALUE da seguinte forma: value={this.state.value}
Fiz a alteração e funcionou.
Por que no exemplo do curso não dá errado? Somente no meu?
Qual seria o correto? Pois na documentação do React está indicando desta forma.
Obrigado!