소스 검색

上传文件至 'src/component/path'

deng 1 년 전
부모
커밋
5dfa2b011d
2개의 변경된 파일29개의 추가작업 그리고 0개의 파일을 삭제
  1. 12 0
      src/component/path/path.css
  2. 17 0
      src/component/path/path.js

+ 12 - 0
src/component/path/path.css

@@ -0,0 +1,12 @@
+.path_style {
+
+    color: #000;
+}
+
+.a_style {
+    color: #D1D3DA
+}
+
+/* .path_style:hover {
+    color: #00b96b;
+} */

+ 17 - 0
src/component/path/path.js

@@ -0,0 +1,17 @@
+import React from "react";
+
+import "./path.css";
+const Path = (props) => {
+  return (
+    <>
+      <a
+        href="https://beian.miit.gov.cn/#/Integrated/index"
+        className="a_style"
+      >
+        Copyright ©2017-2023 蜀IPC备1000111111xxxxxxxxx
+      </a>
+    </>
+  );
+};
+
+export default Path;