-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp.js
More file actions
executable file
·47 lines (43 loc) · 1.26 KB
/
App.js
File metadata and controls
executable file
·47 lines (43 loc) · 1.26 KB
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
40
41
42
43
44
45
46
47
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react';
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
StatusBar,
} from 'react-native';
import SplashScreen from './src/screens/SplashScreen';
import InitialLaunchScreen from './src/screens/InitialLaunchScreen';
import SignUpScreen1 from './src/screens/SignUpScreen1';
import SignUpScreen2 from './src/screens/SignUpScreen2';
import FeedScreen from './src/screens/FeedScreen';
import ProfileScreen from './src/screens/ProfileScreen';
import LoginScreen from './src/screens/LoginScreen';
import SearchHomeScreen from './src/screens/SearchHomeScreen';
import SearchScreen from './src/screens/SearchScreen';
import GalleryScreen from './src/screens/GalleryScreen';
import PhotoCaptureScreen from './src/screens/PhotoCaptureScreen';
import ApplyEffectScreen from './src/screens/ApplyEffectScreen';
import ActivityNotificationScreen from './src/screens/ActivityNotificationScreen';
const App: () => React$Node = () => {
return (
<View style={styles.container}>
<ActivityNotificationScreen />
</View>
);
};
const styles = StyleSheet.create({
container: {
display: 'flex',
flex: 1,
},
});
export default App;