summaryrefslogtreecommitdiffstats
path: root/index.js
blob: 85f14e64cf54f9270eec013615aea122a9b6e53c (plain)
1
2
3
4
5
6
7
8
9
/**
 * @format
 */

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

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