Footer.tsx 218 Bytes
Newer Older
zhaoxuanchao's avatar
zhaoxuanchao committed
1 2 3 4 5 6 7 8 9 10 11
import React from 'react'
import {Layout} from 'antd'

const {Footer} = Layout

function Foot() {
  return (
    <Footer style={{textAlign:'center'}}>Copyright © 2021 Created by zxc</Footer>
  )
}
export default Foot;