link-stack/apps/metamigo-frontend/components/voice/providers/shared.tsx

10 lines
200 B
TypeScript
Raw Normal View History

2023-02-13 12:41:30 +00:00
import { SelectInput } from "react-admin";
2023-03-14 17:40:24 +00:00
export const ProviderKindInput = (props: any) => (
2023-02-13 12:41:30 +00:00
<SelectInput
source="kind"
choices={[{ id: "TWILIO", name: "Twilio" }]}
{...props}
/>
);