import { ScrollView } from 'react-native' import React, { ReactNode } from 'react' import { GridContainer } from './Grid' const Layout = ({ children }: { children: ReactNode }) => ( {children} ) export default Layout