Blame view

src/routes/$.tsx 507 Bytes
7619887f   张志伟   🐹 feat(*): 增加缺省页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  import { Empty, helper, Button } from '@feewee/h5app-common';
  import { useNavigate } from '@modern-js/runtime/router';
  
  /** 全局404页面 */
  export default function NotFound() {
    const navigate = useNavigate();
    return (
      <Empty type="noPage" className="pt-8 max-w-screen-md mx-auto">
        <div className="mt-8 mx-auto w-4/6">
          <Button type="primary" size="large" block onClick={() => helper.checkBack(() => navigate(-1))}>
            返回
          </Button>
        </div>
      </Empty>
    );
  }