mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
19 lines
481 B
JavaScript
19 lines
481 B
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router';
|
|
|
|
export default function NotFound({ location }) {
|
|
return (
|
|
<div id="page-404">
|
|
<section>
|
|
<h1>404</h1>
|
|
<p>你要找的页面不存在 <Link to={{ query: location.query, pathname: '/' }}>返回首页</Link></p>
|
|
</section>
|
|
<style
|
|
dangerouslySetInnerHTML={{
|
|
__html: '#react-content { height: 100%; background-color: #fff }',
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|