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

10 lines
195 B
TypeScript
Raw Normal View History

2023-02-13 12:41:30 +00:00
import { SelectInput } from "react-admin";
export const ProviderKindInput = (props) => (
<SelectInput
source="kind"
choices={[{ id: "TWILIO", name: "Twilio" }]}
{...props}
/>
);