How to restrict textbox to allow only numbers and format as US mobile number format in react js ? ex : (456) 125-0156. Below code to allow only numbers.
mobileNumberChange(evt) {
    var decimalvalidate = /^[2-9][0-9]*$/;
    if (!decimalvalidate.test(evt.key)) {
      evt.preventDefault();
}
But how will I format as (456) 125-0156 ?
 
     
    