import { ReactNode } from 'react'; interface IProps { analytics: ReactNode; team: ReactNode; children: ReactNode; } export default function ParallelLayout(props: IProps) { const { analytics, team, children } = props; return (

parallel layout

{analytics}
{team}
{/* children页面的渲染需要在当前目录下实现一个 `default.tsx` */}
{children}
); }