empty.tsx 499 B

123456789101112131415161718
  1. import { Button, Result } from 'antd';
  2. import React from 'react';
  3. import { history } from 'umi';
  4. const NoFoundPage: React.FC = () => (
  5. <Result
  6. status="404"
  7. title="没有公众号"
  8. subTitle="此模块需要添加公众号才能预览,请先绑定公众号"
  9. extra={
  10. <Button type="primary" onClick={() => history.push('/operatePage/account')}>
  11. 去添加公众号
  12. </Button>
  13. }
  14. />
  15. );
  16. export default NoFoundPage;