The task is to implement a PhoneNumberInput component that


accepts only numerical digits
formats the number automatically as (123)456-7890 by
adding the parentheses when the 4th digit is added
also adding - before the 7th digit
The boilerplate code:





import React from 'react'
export function PhoneNumberInput() {
// your code here
return...