import { PropsWithChildren } from "react"; import { Box } from "./ui/box"; type props = PropsWithChildren; export default function Screen({ children }: props) { return {children}; }