19 lines
355 B
JavaScript
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
|