({ children }: { children: React.ReactNode })
| 9 | }; |
| 10 | |
| 11 | export default function ProfileLayout({ children }: { children: React.ReactNode }): JSX.Element { |
| 12 | return ( |
| 13 | <div className="min-h-screen bg-background font-sans antialiased"> |
| 14 | <AppbarClient /> |
| 15 | <div className="max-w-screen-xl flex p-4 m-auto"> |
| 16 | <div className="p-2 w-full grid grid-cols-8 gap-2"> |
| 17 | <ProfileSidebar /> |
| 18 | <ProfileChilldren>{children}</ProfileChilldren> |
| 19 | </div> |
| 20 | </div> |
| 21 | </div> |
| 22 | ); |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected