import React from 'react'; import Header from './Header'; import Navigation from './Navigation'; import Sidebar from './Sidebar'; interface LayoutProps { children: React.ReactNode; title?: string; showBackButton?: boolean; rightAction?: React.ReactNode; } const Layout: React.FC = ({ children, title, showBackButton = false, rightAction }) => { return (
{/* 桌面侧边栏 - 仅在中等及更大屏幕显示 */}
{/* 主内容区 */}
{/* 包装器,提供合适的最大宽度 */}
{children}
{/* 移动导航 - 仅在小屏幕显示 */}
); }; export default Layout;