2023-04-12 23:41:28 -06:00
|
|
|
/**
|
|
|
|
* Sample React Native App
|
|
|
|
* https://github.com/facebook/react-native
|
|
|
|
*
|
|
|
|
* Generated with the TypeScript template
|
|
|
|
* https://github.com/react-native-community/react-native-template-typescript
|
|
|
|
*
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React, {type PropsWithChildren} from 'react';
|
2023-04-20 04:42:14 -06:00
|
|
|
import {StyleSheet, View} from 'react-native';
|
|
|
|
import VideoPlayer from './src/VideoPlayer';
|
2023-04-12 23:41:28 -06:00
|
|
|
|
|
|
|
const App = () => {
|
2023-04-20 04:42:14 -06:00
|
|
|
return <VideoPlayer />;
|
2023-04-12 23:41:28 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|