ant-design/site/theme/template/NotFound.jsx

17 lines
412 B
React
Raw Normal View History

2016-04-27 10:56:17 +08:00
import React from 'react';
import { Link } from 'react-router';
export default function NotFound() {
return (
<div id="page-404">
<section>
<h1>404</h1>
<p>你要找的页面不存在 <Link to="/">返回首页</Link></p>
</section>
<style dangerouslySetInnerHTML={{
2016-05-11 09:32:33 +08:00
__html: '#react-content { height: 100%; background-color: #fff }',
}} />
2016-04-27 10:56:17 +08:00
</div>
);
}