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