/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow strict-local */ import React from 'react'; import { SafeAreaView, StyleSheet, TouchableOpacity, View, Text, } from 'react-native'; const App = () => { return ( <> RNHeading Navigation Header 1 Label 1 Header 2 Label 2 ); }; const styles = StyleSheet.create({ body: { flex: 1, paddingHorizontal: 10, }, group: { padding: 10, }, header: { backgroundColor: '#008577', paddingHorizontal: 20, paddingVertical: 20, }, headerText: { color: 'white', }, }); export default App;