// material-ui import { Link, Container, Box } from '@mui/material'; import React from 'react'; import { useSelector } from 'react-redux'; // ==============================|| FOOTER - AUTHENTICATION 2 & 3 ||============================== // const Footer = () => { const siteInfo = useSelector((state) => state.siteInfo); return ( {siteInfo.footer_html ? (
) : ( <> {siteInfo.system_name} {process.env.REACT_APP_VERSION}{' '} 由{' '} JustSong {' '} 构建,主题 berry 来自{' '} MartialBE {' '},源代码遵循 MIT 协议 )}
); }; export default Footer;