Create LunchEvents.js

This commit is contained in:
Michael Ilie 2020-08-09 20:16:52 -04:00 committed by GitHub
parent 4e62459760
commit bcc05f8ff0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
app/LunchEvents.js Normal file
View File

@ -0,0 +1,29 @@
import React from 'react';
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
StatusBar,
} from 'react-native';
import {
Header,
LearnMoreLinks,
Colors,
DebugInstructions,
ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';
class LunchEvents extends React.Component {
render() {
return (
<View>
</View>
)
}
}
export default LunchEvents;