/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow strict-local */ import React from 'react'; import { StyleSheet, } from 'react-native'; import { Colors, } from 'react-native/Libraries/NewAppScreen'; import Main_tab_navigation from './components/navigation/main_tab_navigation'; const App: () => React$Node = () => { return ( ); }; const styles = StyleSheet.create({ scrollView: { backgroundColor: Colors.lighter, }, }); export default App;