- /**
- * @format
- */
- import { AppRegistry } from 'react-native';
- import App from './App';
- import { name as appName } from './app.json';
- import api from './src/api/index';
- import utils from './src/utils/index';
- global.$http = api;
- global.$utils = utils;
- AppRegistry.registerComponent(appName, () => App);
|