import { PropsWithChildren } from "react"; import { View } from "react-native"; type props = PropsWithChildren; export default function Screen({ children }: props) { return {children}; }