/**
* 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,
LearnMoreLinks,
ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';
import { Header } from 'react-native-elements';
const Section = ({children, title}): Node => {
const isDarkMode = useColorScheme() === 'dark';
return (
{title}
{children}
);
};
const App: () => Node = () => {
return (
<>
locaft
>
);
};
const styles = StyleSheet.create({
viewRoot: {
backgroundColor: "#1C254E",
height: "100%",
},
});
export default App;