import { toast } from "sonner"; import { Search } from "./Search"; export function Layout({ children }: { children?: React.ReactNode }) { return (

中V档案馆

{children}
); } const LoginOrLogout = () => { const session = localStorage.getItem("sessionID"); if (session) { return ( { localStorage.removeItem("sessionID"); toast.success("已退出登录"); }} > 退出登录 ); } else { return 登录; } }; export function LayoutWithoutSearch({ children }: { children?: React.ReactNode }) { return (

中V档案馆

{children}
); }