({ children })
| 9 | import type { FC, PropsWithChildren } from 'react'; |
| 10 | |
| 11 | const AboutLayout: FC<PropsWithChildren> = ({ children }) => ( |
| 12 | <> |
| 13 | <WithNavBar /> |
| 14 | |
| 15 | <Article> |
| 16 | <WithSidebar navKeys={['about', 'getInvolved']} /> |
| 17 | |
| 18 | <div> |
| 19 | <main id="main" tabIndex={-1}> |
| 20 | {children} |
| 21 | </main> |
| 22 | |
| 23 | <WithMetaBar /> |
| 24 | </div> |
| 25 | |
| 26 | <WithBreadcrumbs navKeys={['about', 'getInvolved']} /> |
| 27 | </Article> |
| 28 | |
| 29 | <WithFooter /> |
| 30 | </> |
| 31 | ); |
| 32 | |
| 33 | export default AboutLayout; |
nothing calls this directly
no outgoing calls
no test coverage detected