Skip to content

Instantly share code, notes, and snippets.

@joaquin-viera
Created October 21, 2020 04:22
Show Gist options
  • Save joaquin-viera/4f677a82db7160ccf89ba6a3e4235c0c to your computer and use it in GitHub Desktop.
Save joaquin-viera/4f677a82db7160ccf89ba6a3e4235c0c to your computer and use it in GitHub Desktop.
VideoPlayer - App.js
import React from 'react';
import { StyleSheet, View } from 'react-native';
import VideoPlayer from './Components/VideoPlayer';
const App = () => {
return (
<View style={styles.container}>
<VideoPlayer />
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
backgroundColor: 'black',
},
});
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment