From 5d78c73e8c952bd583b9b5a6939cbc74e58d2a6c Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Thu, 23 Mar 2017 12:06:24 -0700 Subject: [PATCH] [add] export 'ViewPropTypes' See https://github.com/reactjs/react-codemod/pull/99 --- src/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 33007ad3..931046b6 100644 --- a/src/index.js +++ b/src/index.js @@ -45,6 +45,7 @@ import View from './components/View'; import ColorPropType from './propTypes/ColorPropType'; import EdgeInsetsPropType from './propTypes/EdgeInsetsPropType'; import PointPropType from './propTypes/PointPropType'; +import ViewPropTypes from './components/View/ViewPropTypes'; modality(); @@ -98,7 +99,8 @@ const ReactNative = { // propTypes ColorPropType, EdgeInsetsPropType, - PointPropType + PointPropType, + ViewPropTypes }; module.exports = ReactNative;