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