about summary refs log tree commit diff
path: root/index.native.js
blob: c399905240e4d0d759c43802ba28348ed650b822 (plain) (blame)
1
2
3
4
5
6
7
8
9
/**
 * @format
 */

import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './src/app.json';

AppRegistry.registerComponent(appName, () => App);