Skip to content

Instantly share code, notes, and snippets.

@adhithiravi
Created August 16, 2018 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adhithiravi/d9275e325a90e99807a6b7589bc4897e to your computer and use it in GitHub Desktop.
Save adhithiravi/d9275e325a90e99807a6b7589bc4897e to your computer and use it in GitHub Desktop.
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
import VideoComponent from './VideoComponent'
export default class App extends Component<Props> {
render() {
return (
<View>
<VideoComponent />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment