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 = () => { +
+ +
); };