import React from 'react'; import { YStack } from '@tamagui/stacks'; import { useAppearance } from '@/hooks/use-appearance'; type AmbientBackgroundProps = { children: React.ReactNode; }; export default function AmbientBackground({ children }: AmbientBackgroundProps) { const { resolved } = useAppearance(); const isDark = resolved === 'dark'; return ( {children} ); }