react-native-video/examples/basic/src/index.js

6 lines
188 B
JavaScript
Raw Normal View History

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