-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
39 lines (33 loc) · 1.01 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// import React from 'react';
// import 'react-native-gesture-handler';
// import {SafeAreaView, StyleSheet, StatusBar, Text} from 'react-native';
// import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
// const App = () => {
// return (
// <>
// <StatusBar barStyle="dark-content" />
// <SafeAreaView style={styles.container}>
// <Text>This font-weight is 'regular' </Text>
// <Text style={styles.boldFont}>This font-weight is 'bold' </Text>
// <MaterialCommunityIcons name="bell" color={'#353353'} size={23} />
// </SafeAreaView>
// </>
// );
// };
// const styles = StyleSheet.create({
// container: {
// flex: 1,
// justifyContent: 'center',
// alignItems: 'center',
// },
// boldFont: {
// fontFamily: 'Roboto-Bold',
// },
// });
// export default App;
import React from 'react';
import {TabBar} from './src/navigation/TabBar';
const App = () => {
return <TabBar barColor="#F6F7EC" />;
};
export default App;