link-stack/apps/link/metamigo-add/_components/voice/providers/shared.tsx
2023-08-25 11:04:38 +02:00

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