// 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}{' '} 由{' '} MartialBE 开发,基于 JustSong {' '} One API,源代码遵循 MIT 协议 )}
); }; export default Footer;