import type { PropsWithChildren, } from 'react'; import { StyleSheet, SafeAreaView, useColorScheme } from 'react-native'; import { ThemedView } from '@/components/ThemedView'; import { ThemedText } from './ThemedText'; type Props = PropsWithChildren<{}>; export default function ParallaxScrollView({ children, }: Props) { const theme = useColorScheme() ?? 'light'; return ( CAS4 {children} ); } const styles = StyleSheet.create({ container: { flex: 1, }, nav: { paddingTop: 50, padding: 10, }, header: { height: 250, overflow: 'hidden', }, content: { flex: 1, padding: 32, gap: 16, overflow: 'hidden', }, });