@dialstack/sdk / react / PhoneNumbers
Variable: PhoneNumbers
const PhoneNumbers: React.FC<PhoneNumbersProps>;
Defined in: sdk/src/react/PhoneNumbers.tsx:94
PhoneNumbers component displays a unified list of all phone numbers for the authenticated account.
Merges data from DIDs, number orders, and port orders into a single table with client-side pagination.
Must be used within a DialstackComponentsProvider.
Example
<DialstackComponentsProvider dialstack={dialstack}>
<PhoneNumbers
limit={20}
onRowClick={(e) => console.log('Selected:', e.phoneNumber)}
/>
</DialstackComponentsProvider>