import React from "react"; import { Provider } from "../types"; import { AppType } from "../lib/tauri-api"; import ProviderForm from "./ProviderForm"; interface AddProviderModalProps { appType: AppType; onAdd: (provider: Omit) => void; onClose: () => void; } const AddProviderModal: React.FC = ({ appType, onAdd, onClose, }) => { return ( ); }; export default AddProviderModal;