/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow strict-local */ import React from 'react'; import type {Node} from 'react'; import { SafeAreaView, ScrollView, StatusBar, StyleSheet, Text, useColorScheme, View, } from 'react-native'; import { Colors, DebugInstructions, Header, LearnMoreLinks, ReloadInstructions, } from 'react-native/Libraries/NewAppScreen'; const Section = ({children, title}): Node => { const isDarkMode = useColorScheme() === 'dark'; return ( {title} {children} ); }; const App: () => Node = () => { return ( <> locaft ); }; const styles = StyleSheet.create({ viewRoot: { fontFamily:'Ubuntu-Regular', backgroundColor: "#1C254E", height: "100%", }, }); export default App;