link-stack/apps/metamigo-frontend/app/_components/voice/providers/shared.tsx
Darren Clarke f901f203b0 Develop
2023-07-18 12:26:57 +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}
/>
);