/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React from 'react'; import { SafeAreaView, StyleSheet, ScrollView, View, Text, StatusBar, TouchableOpacity, } from 'react-native'; import { Header, LearnMoreLinks, Colors, DebugInstructions, ReloadInstructions, } from 'react-native/Libraries/NewAppScreen'; import * as WeChat from 'react-native-wechat'; import Main_tab_navigation from './components/navigation/main_tab_navigation'; console.disableYellowBox = true; const App: () => React$Node = () => { return ; }; const styles = StyleSheet.create({ scrollView: { backgroundColor: Colors.lighter, }, }); export default App;