6 lines
188 B
JavaScript
Raw Normal View History

import {AppRegistry} from 'react-native';
2022-04-23 22:23:10 +02:00
import VideoPlayer from './VideoPlayer';
import {name as appName} from '../app.json';
2022-04-23 22:23:10 +02:00
AppRegistry.registerComponent(appName, () => VideoPlayer);