Ver Fonte

日常开发

林旭祥 há 6 dias atrás
pai
commit
d05fa7d7c5
1 ficheiros alterados com 4 adições e 3 exclusões
  1. 4 3
      index.js

+ 4 - 3
index.js

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