fix: move basic sample to typescript

This commit is contained in:
olivier bouillet
2022-04-23 22:23:10 +02:00
parent 89f6c40686
commit a0c9b4e090
13 changed files with 128 additions and 57 deletions

5
examples/basic/index.js Normal file
View File

@@ -0,0 +1,5 @@
import VideoPlayer from './VideoPlayer';
import { AppRegistry } from 'react-native';
AppRegistry.registerComponent('VideoPlayer', () => VideoPlayer);