Files
FE-DEVICE-SGW/src/components/Footer/Footer.tsx
2025-10-09 11:24:16 +07:00

16 lines
309 B
TypeScript

import { DefaultFooter } from '@ant-design/pro-components';
import './style.less';
const Footer = () => {
return (
<DefaultFooter
style={{
background: 'none',
color: 'white',
}}
copyright="2025 Sản phẩm của Mobifone v1.2.1"
/>
);
};
export default Footer;