App.js 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React from 'react';
  9. import {
  10. SafeAreaView,
  11. StyleSheet,
  12. ScrollView,
  13. View,
  14. Text,
  15. StatusBar,
  16. TouchableOpacity,
  17. } from 'react-native';
  18. import {
  19. Header,
  20. LearnMoreLinks,
  21. Colors,
  22. DebugInstructions,
  23. ReloadInstructions,
  24. } from 'react-native/Libraries/NewAppScreen';
  25. import * as WeChat from 'react-native-wechat';
  26. import Main_tab_navigation from './components/navigation/main_tab_navigation';
  27. console.disableYellowBox = true;
  28. const App: () => React$Node = () => {
  29. return <Main_tab_navigation />;
  30. };
  31. const styles = StyleSheet.create({
  32. scrollView: {
  33. backgroundColor: Colors.lighter,
  34. },
  35. });
  36. export default App;