({ topBar, sidebar, page }: LayoutProps)
| 10 | }; |
| 11 | |
| 12 | export const Layout = ({ topBar, sidebar, page }: LayoutProps) => { |
| 13 | return ( |
| 14 | <div css={appCss}> |
| 15 | {topBar} |
| 16 | <div css={mainContentCss}> |
| 17 | {sidebar} |
| 18 | <div css={pageCss}>{page}</div> |
| 19 | </div> |
| 20 | </div> |
| 21 | ); |
| 22 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected