fix(web): conversation page not need login

This commit is contained in:
zhaoying
2026-01-14 19:00:38 +08:00
parent 0d9cdd5039
commit 58d82df327
4 changed files with 22 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
import { Outlet } from 'react-router-dom';
import { type FC } from 'react';
// 基础布局组件,用于展示内容并保留用户信息获取功能
const NoAuthLayout: FC = () => {
return (
<div className="rb:relative rb:h-full rb:w-full">
<Outlet />
</div>
)
};
export default NoAuthLayout;