9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
//import NumberFormat from "react-number-format";
|
|
import parsePhoneNumber from "libphonenumber-js";
|
|
import React from "react";
|
|
|
|
export default function PhoneNumberFormatter(props) {
|
|
const p = parsePhoneNumber(props.children || "", "CA");
|
|
return p ? <span>{p.formatNational()}</span> : null;
|
|
}
|