react-native-video/examples/FabricExample/App.tsx

20 lines
433 B
TypeScript
Raw Normal View History

/**
* 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';
const App = () => {
2023-04-20 04:42:14 -06:00
return <VideoPlayer />;
};
export default App;