JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://igorescobar.github.io/jQuery-Mask-Plugin/js/jquery.mask.min.js"></script>
<input type="text" id="phone" />

JavaScript

$('#phone').mask('(999) 999-9999', {  
    placeholder: '(4445) '
}).on('focus', function() { 
    if(!this.value) 
        $(this).val('(4445) '); 
})