Files
cod-fe/src/layout/LayoutFooter.jsx
2025-09-17 12:17:02 +07:00

19 lines
355 B
JavaScript

import React from 'react'
import { Layout } from 'antd'
import Link from 'antd/es/typography/Link';
const { Footer } = Layout;
const LayoutFooter = () => {
return (
<Footer
style={{
textAlign: 'center',
}}
>
{/* SYPIU GGCP */}
</Footer>
)
}
export default LayoutFooter