importReactfrom'react';import{Button}from'antd';// 这里应该使用 antd 的 404 result 组件,// 但是还没发布,先来个简单的。constNoFoundPage:React.FC<{}>=()=>(<divstyle={{height:'100vh',padding:80,textAlign:'center',}}><imgsrc="https://gw.alipayobjects.com/zos/antfincdn/wsE2Pw%243%26L/noFound.svg"alt="404"/><br/><br/><h1>404</h1><p>Sorry, the page you visited does not exist.</p><Buttontype="primary">Back Home</Button></div>);exportdefaultNoFoundPage;