import React from "react"; import {Layout} from "antd"; import useGlobalStore from "@/stores/global"; const {Footer} = Layout; const FooterRender: React.FC = () => { const currentYear = new Date().getFullYear(); const themeConfig = useGlobalStore(state => state.themeConfig); return ( <> {themeConfig.fixedFooter &&
} > ); }; export default FooterRender;