mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-29 16:03:21 +00:00
chore: application prettier
This commit is contained in:
@ -1,7 +1,12 @@
|
||||
import { formatPhoneNumber } from "@/utils/Telephone";
|
||||
import { formatPhoneNumber } from '@/utils/Telephone';
|
||||
|
||||
export function PhoneLabel({phoneNumber}){
|
||||
return (
|
||||
<a className="text-sm font-semibold text-gray-800" href={"tel:"+phoneNumber}>{formatPhoneNumber(phoneNumber)}</a>
|
||||
);
|
||||
}
|
||||
export function PhoneLabel({ phoneNumber }) {
|
||||
return (
|
||||
<a
|
||||
className="text-sm font-semibold text-gray-800"
|
||||
href={'tel:' + phoneNumber}
|
||||
>
|
||||
{formatPhoneNumber(phoneNumber)}
|
||||
</a>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user