import { Box, ScrollView } from 'native-base'; import { Navigation } from '../Navigation'; export const DefaultLayout = ({ children, showNav = true }: { showNav?: boolean; children: React.ReactNode }) => { return ( <> {children} {showNav && } ); };