76f266645d
含 Phase 1.1 IM seq 排序、断线重连、多端已读同步与微信式语音转文字 UI。 排除 node_modules、构建产物、安装包与 .env 密钥。 Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
572 B
TypeScript
31 lines
572 B
TypeScript
import { Button, Result } from 'antd';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
export function NotFoundPage() {
|
|
return (
|
|
<Result
|
|
status="404"
|
|
title="页面不存在"
|
|
extra={
|
|
<Button type="primary">
|
|
<Link to="/workbench">返回工作台</Link>
|
|
</Button>
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function ForbiddenPage() {
|
|
return (
|
|
<Result
|
|
status="403"
|
|
title="没有权限"
|
|
extra={
|
|
<Button type="primary">
|
|
<Link to="/workbench">返回工作台</Link>
|
|
</Button>
|
|
}
|
|
/>
|
|
);
|
|
}
|