Explorar el Código

Added Screen to module exports

Yedidya Kennard hace 8 años
padre
commit
24b4756414
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      src/index.js

+ 3
- 1
src/index.js Ver fichero

@@ -1,7 +1,9 @@
1 1
 import Navigation from './Navigation';
2
+import Screen from './Screen';
2 3
 import {NavigationToolBarIOS} from 'react-native-controllers';
3 4
 
4 5
 module.exports = {
5 6
   Navigation,
6
-  NavigationToolBarIOS
7
+  NavigationToolBarIOS,
8
+  Screen
7 9
 };