mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import {FormInstance} from "antd";
|
|
import React from "react";
|
|
import {Connector} from "../../utils/api/connectors";
|
|
|
|
export function ConnectorForm({form, onCreate}: { form: FormInstance, onCreate: (values: Connector) => void }) {
|
|
return <>
|
|
</>
|
|
} |