浏览代码

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