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