Make the basic example app work on web

This commit is contained in:
Zoe Roux
2024-07-01 03:32:28 +00:00
parent cce24cd829
commit aa85d71b87
4 changed files with 196 additions and 218 deletions

View File

@@ -1,5 +1,4 @@
import {AppRegistry} from 'react-native';
import {registerRootComponent} from 'expo';
import VideoPlayer from './VideoPlayer';
import {name as appName} from '../app.json';
AppRegistry.registerComponent(appName, () => VideoPlayer);
registerRootComponent(VideoPlayer);