link-stack/apps/metamigo-frontend/app/_components/voice/providers/shared.tsx
2023-06-28 12:55:24 +00: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}
/>
);