(
page: ReactElement,
layoutWithSidebarProps: LayoutWithSidebarProps = {},
)
| 21 | }; |
| 22 | |
| 23 | export const getLayoutWithSidebar = ( |
| 24 | page: ReactElement, |
| 25 | layoutWithSidebarProps: LayoutWithSidebarProps = {}, |
| 26 | ) => { |
| 27 | return ( |
| 28 | <LayoutWithSidebar {...layoutWithSidebarProps}>{page}</LayoutWithSidebar> |
| 29 | ); |
| 30 | }; |
no outgoing calls
no test coverage detected