瀏覽代碼

Add index.js to help TypeScript

Mathieu Acthernoene 7 年之前
父節點
當前提交
1a3a7ad928
共有 1 個檔案被更改,包括 7 行新增0 行删除
  1. 7
    0
      index.js

+ 7
- 0
index.js 查看文件

@@ -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'))