From 5f3dff0bf26db66b412c091948469480ed95b64e Mon Sep 17 00:00:00 2001 From: caishi <1149225589@qq.com> Date: Wed, 12 Jul 2023 09:25:54 +0800 Subject: [PATCH] server --- src/forge/Main/fork/index.jsx | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/forge/Main/fork/index.jsx diff --git a/src/forge/Main/fork/index.jsx b/src/forge/Main/fork/index.jsx new file mode 100644 index 000000000..37e3c64dd --- /dev/null +++ b/src/forge/Main/fork/index.jsx @@ -0,0 +1,40 @@ +import React ,{ useEffect , useState } from 'react'; +import { Modal , Form } from 'antd'; +import './index.scss'; + +function ForkSelfModal(props){ + const { visible , onCancel , onSuccess } = props; + + return( + +
+

您希望将项目Fork至何处?

+
+
+
    + +
  • +

    + 蒋宇航 + 个人 + 存在同名/同标识项目 +

    +

    handsome@qq.com

    +
  • +
+
+

当前用户已存在同名/同标识项目:https://www.gitlink.org.cn/forgeplus/issues/2615请使用/修改新项目名称与标识完成本次fork

+
+
+
+
+
+ ) +} +export default ForkSelfModal; \ No newline at end of file