From a5d579d3e7cfefcb7c03162a43b822ae3e408639 Mon Sep 17 00:00:00 2001 From: unknown <18119604035@163.com> Date: Tue, 26 Sep 2023 21:42:18 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E9=99=86=E9=A1=B5=E9=9D=A2=E6=B0=B4?= =?UTF-8?q?=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/compenents/footer/index.tsx | 8 ++++++-- src/pages/login/index.module.less | 9 +++++++++ src/pages/login/index.tsx | 4 ++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/src/compenents/footer/index.tsx b/src/compenents/footer/index.tsx index aa52911..8c78d4f 100644 --- a/src/compenents/footer/index.tsx +++ b/src/compenents/footer/index.tsx @@ -2,12 +2,16 @@ import React from "react"; import { Layout } from "antd"; import { Link } from "react-router-dom"; -export const Footer: React.FC = () => { +interface PropInterface { + type?: string; +} + +export const Footer: React.FC = ({ type }) => { return ( { const dispatch = useDispatch(); @@ -126,6 +127,9 @@ const LoginPage = () => { +
+ +
); };