Files
react-native-video/example/index.web.js
T
2026-03-25 15:51:34 +01:00

9 lines
257 B
JavaScript

import { AppRegistry } from 'react-native';
import { name as appName } from './app.json';
import App from './src/App';
AppRegistry.registerComponent(appName, () => App);
AppRegistry.runApplication(appName, {
rootTag: document.getElementById('root'),
});