[RESOLVIDO] Iniciante no React. Pegar dados digitado no Input

Olá

Eu estou estudando o ReactJs… e fiz a seguinte estrutura:

     import React, { Component } from "react";
     
     class MyNascimento extends Component {
     
       constructor(props) {
         super(props);
     
         this.state = {      
           nascimentoValue: null,      
         };
       }
     
       render() {
         return (
           <div className="telaNascimento">
            
                     <span className="p-float-label">
                       <InputMask
                         id="nascimento"
                         size={20}
                         className={css.txtcampos}
                         mask="99/99/9999"
                         slotChar="__/__/____"
                         value={this.state.nascimentoValue}
                         onChange={event => {
                           this.setState({
                             nascimentoValue: event.target.value
                           });
                         }}
                       />
                       <label htmlFor="nascimento">Nascimento</label>
                     </span>
                   
             {/* Fim telaNascimento */}
           </div>
         );
       }
     }
     
     class RegistroClientes extends Component {
       constructor(props) {
         super(props);
     
         this.state = {
           nascimentoValue: null
         };
       }
     
     render() {
         return (
           <div className={css.fundo}>
            
      <MyNascimento
                 valueNascimento={this.state.nascimentoValue}
                 handleClick={this.clickProximo}
                 
               />
     
             {/* FIM DA DIV FUNDO PRINCIPAL */}
           </div>
         );
       }
     }
     
     export default RegistroClientes;

Como eu faço para pegar o que foi digitado no componente MyNascimento e jogar na variável nascimento que esta em RegistroClientes?

Solução foi baseado nesse tópico:

1 curtida