link-stack/apps/metamigo-frontend/app/_components/voice/providers/shared.tsx

12 lines
215 B
TypeScript
Raw Normal View History

2023-06-28 12:55:24 +00:00
"use client";
2023-02-13 12:41:30 +00:00
import { SelectInput } from "react-admin";
2023-03-14 17:40:24 +00:00
export const ProviderKindInput = (props: any) => (
2023-02-13 12:41:30 +00:00
<SelectInput
source="kind"
choices={[{ id: "TWILIO", name: "Twilio" }]}
{...props}
/>
);