reymesson1 / septimoejercicio

1 stars 0 forks source link

Limit the customer phone number field at 10 of length #76

Closed reymesson1 closed 5 years ago

reymesson1 commented 5 years ago

On the class customermodal

constructor(){

    super();
    this.state = {

        value: ""
    }
}

handleChange(event){

    if(event.target.value.length<=10){            
        this.setState({
            value: event.target.value
        })
    }  

}
reymesson1 commented 5 years ago

Remove the '-' function