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