Selaa lähdekoodia

Add index.js to help TypeScript

Mathieu Acthernoene 7 vuotta sitten
vanhempi
commit
1a3a7ad928
1 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. 7
    0
      index.js

+ 7
- 0
index.js Näytä tiedosto

@@ -0,0 +1,7 @@
1
+// @flow
2
+
3
+import { Platform } from 'react-native'
4
+
5
+export default (Platform.OS === 'ios'
6
+  ? require('./index.ios')
7
+  : require('./index.android'))