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}
|
|
|
|
|
/>
|
|
|
|
|
);
|