mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-10-23 09:53:42 +08:00
* fix: 404 Component is missing * chore: update 404 page style --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
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;
|