UNPKG

create-react-native-library

Version:
12 lines (9 loc) 305 B
import { AppRegistry } from 'react-native'; import App from './src/App'; import { name as appName } from './app.json'; AppRegistry.registerComponent(appName, () => App); if (typeof document !== 'undefined') { AppRegistry.runApplication(appName, { rootTag: document.getElementById('root'), }); }