mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-23 13:42:01 +00:00
18 lines
324 B
TypeScript
18 lines
324 B
TypeScript
'use client'
|
|
import { PhoneInput } from '@/components/ui/phone-input'
|
|
import React from 'react'
|
|
|
|
export default function MyPayments() {
|
|
return (
|
|
<div>
|
|
<PhoneInput
|
|
id="phone-number"
|
|
name="phoneNumber"
|
|
placeholder="Enter phone number"
|
|
defaultCountry="MV"
|
|
/>
|
|
</div>
|
|
|
|
)
|
|
}
|