link-stack/apps/metamigo-frontend/components/voice/providers/shared.tsx
2023-03-10 08:26:51 +00:00

9 lines
195 B
TypeScript

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