({ children })
| 5 | import styles from './layouts.module.css'; |
| 6 | |
| 7 | const BaseLayout: FC<PropsWithChildren> = ({ children }) => ( |
| 8 | <NavigationStateProvider> |
| 9 | <div className={styles.baseLayout}>{children}</div> |
| 10 | </NavigationStateProvider> |
| 11 | ); |
| 12 | |
| 13 | export default BaseLayout; |
nothing calls this directly
no outgoing calls
no test coverage detected