import React from 'react'; import { ScrollView, StyleProp, ViewStyle } from 'react-native'; import { useDTTheme } from '@dangerousthings/react-native'; interface ScreenContainerProps { children: React.ReactNode; style?: StyleProp; } export function ScreenContainer({ children, style }: ScreenContainerProps) { const theme = useDTTheme(); return ( {children} ); }