| 530592e | 1 | export default function RepoTabsLayout({ | ||
| 530592e | 2 | children, | ||
| 530592e | 3 | }: { | ||
| 530592e | 4 | children: React.ReactNode; | ||
| 530592e | 5 | }) { | ||
| 530592e | 6 | return ( | ||
| bdf6540 | 7 | <div className="max-w-3xl mx-auto px-4 py-6 overflow-hidden"> | ||
| 530592e | 8 | {children} | ||
| 530592e | 9 | </div> | ||
| 530592e | 10 | ); | ||
| 530592e | 11 | } |