/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import * as React from 'react'; import { SafeAreaView, ScrollView, StatusBar, StyleSheet, Text, View, useColorScheme, } from 'react-native'; function App(): React.ReactNode { const isDarkMode = useColorScheme() === 'dark'; return ( Hello, World! ); } const styles = StyleSheet.create({ title: { fontSize: 24, fontWeight: '600', }, }); export default App;