import { View } from "tamagui"; import { LinearGradient } from "tamagui/linear-gradient"; import { Header } from "./Header"; interface Props { children?: React.ReactNode; } export default function ScreenLayout({ children }: Props) { return (
{children} ); }