App.js 538 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow strict-local
  7. */
  8. import React from 'react';
  9. import {
  10. StyleSheet,
  11. } from 'react-native';
  12. import {
  13. Colors,
  14. } from 'react-native/Libraries/NewAppScreen';
  15. import Main_tab_navigation from './components/navigation/main_tab_navigation';
  16. const App: () => React$Node = () => {
  17. return (
  18. <Main_tab_navigation />
  19. );
  20. };
  21. const styles = StyleSheet.create({
  22. scrollView: {
  23. backgroundColor: Colors.lighter,
  24. },
  25. });
  26. export default App;