index.tsx 317 B

12345678910111213
  1. import React from 'react';
  2. import { Button, Result } from 'antd';
  3. const App: React.FC = () => (
  4. <Result
  5. status="404"
  6. title="404"
  7. subTitle="抱歉,当前页面不存在!"
  8. extra={<Button type="primary" onClick={() => window.location.href = '/'}>返回首页</Button>}
  9. />
  10. );
  11. export default App;