index.js 637 B

1234567891011121314151617181920212223242526272829
  1. import {
  2. DefaultFooter,
  3. PageContainer,
  4. ProCard,
  5. } from '@ant-design/pro-components';
  6. export default (props) => {
  7. return (
  8. <div>
  9. <PageContainer header={{ title: null }} {...props}>
  10. <ProCard
  11. style={{ minHeight: 'calc(100vh - 170px)', overflowY: 'auto' }}
  12. >
  13. {props.children}
  14. </ProCard>
  15. </PageContainer>
  16. <div
  17. style={{
  18. fontSize: 14,
  19. color: 'rgba(0, 0, 0, 0.88)',
  20. textAlign: 'center',
  21. margin: '20px 0',
  22. }}
  23. >
  24. Copyright   2021-2031 by GreenTech. All Rights Reserved.
  25. </div>
  26. </div>
  27. );
  28. };