import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { useSafeArea } from 'react-native-safe-area-context'; export default function RunnerError({ children }) { const { top } = useSafeArea(); return ( {children} ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, text: { color: 'red', }, });