mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-18 10:15:41 +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 <>
|
||
|
|
</>
|
||
|
|
}
|