mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
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') {
|
|
const rootTag = document.getElementById('root');
|
|
AppRegistry.runApplication(appName, {rootTag});
|
|
}
|