import { Form, Input, Button } from 'antd'; import type { DatasetConfig } from '../../models/dataset-manager'; import type { AddDatasetFormProps } from './types'; export default function AddDatasetForm(props: AddDatasetFormProps) { const { onDatasetAdd } = props; const handleFinish = (value: Pick) => { const { url, name } = value; onDatasetAdd(url, name); }; return (
); }