mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-23 03:36:42 +08:00
21 lines
360 B
JavaScript
21 lines
360 B
JavaScript
import React from 'react';
|
|
import { Segment, Header } from 'semantic-ui-react';
|
|
|
|
const NotFound = () => (
|
|
<>
|
|
<Header
|
|
block
|
|
as="h4"
|
|
content="404"
|
|
attached="top"
|
|
icon="info"
|
|
className="small-icon"
|
|
/>
|
|
<Segment attached="bottom">
|
|
未找到所请求的页面
|
|
</Segment>
|
|
</>
|
|
);
|
|
|
|
export default NotFound;
|