2022-05-14 22:35:51 +00:00
|
|
|
import TwilioConnect from "~/features/settings/components/phone/twilio-connect";
|
2022-05-14 10:22:06 +00:00
|
|
|
import PhoneNumberForm from "~/features/settings/components/phone/phone-number-form";
|
|
|
|
|
|
|
|
function PhoneSettings() {
|
|
|
|
return (
|
|
|
|
<div className="flex flex-col space-y-6">
|
2022-05-14 22:35:51 +00:00
|
|
|
<TwilioConnect />
|
2022-05-14 10:22:06 +00:00
|
|
|
<PhoneNumberForm />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PhoneSettings;
|