import React from 'react'; import { YStack } from '@tamagui/stacks'; import AmbientBackground from './AmbientBackground'; type StandaloneShellProps = { children: React.ReactNode; compact?: boolean; }; export default function StandaloneShell({ children, compact = false }: StandaloneShellProps) { return ( {children} ); }