mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 01:06:37 +08:00
14 lines
287 B
JavaScript
14 lines
287 B
JavaScript
import React from 'react';
|
|
import { Message } from 'semantic-ui-react';
|
|
|
|
const NotFound = () => (
|
|
<>
|
|
<Message negative>
|
|
<Message.Header>页面不存在</Message.Header>
|
|
<p>请检查你的浏览器地址是否正确</p>
|
|
</Message>
|
|
</>
|
|
);
|
|
|
|
export default NotFound;
|