link-stack/apps/metamigo-frontend/components/voice/providers/shared.tsx
2023-03-14 17:40:24 +00:00

9 lines
200 B
TypeScript

import { SelectInput } from "react-admin";
export const ProviderKindInput = (props: any) => (
<SelectInput
source="kind"
choices={[{ id: "TWILIO", name: "Twilio" }]}
{...props}
/>
);