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