Footer.jsx 288B

1234567891011121314
  1. import React from 'react';
  2. import { Layout, Spin } from 'antd';
  3. const { Footer } = Layout;
  4. const year = new Date().getFullYear();
  5. export default (props) => {
  6. const copyRight = `南京云致 @${year}`
  7. return (
  8. <Footer style={{ textAlign: 'center' }}>{copyRight}</Footer>
  9. )
  10. }