From 1c5053b24d4c852699085b280013d7e04c821c4e Mon Sep 17 00:00:00 2001 From: James Ide Date: Fri, 12 Jun 2015 11:14:19 -0700 Subject: [PATCH] [ReactNative] Export EdgeInsetsPropType and PointPropType Summary: Added some more exports to React that are either necessary or often useful for component authors. Closes https://github.com/facebook/react-native/pull/262 Github Author: James Ide Test Plan: Imported from GitHub, without a `Test Plan:` line. --- Libraries/react-native/react-native.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Libraries/react-native/react-native.js b/Libraries/react-native/react-native.js index 3372192ea33dfc..479476cbe0875d 100644 --- a/Libraries/react-native/react-native.js +++ b/Libraries/react-native/react-native.js @@ -65,6 +65,10 @@ var ReactNative = Object.assign(Object.create(require('React')), { Platform: require('Platform'), requireNativeComponent: require('requireNativeComponent'), + // Prop Types + EdgeInsetsPropType: require('EdgeInsetsPropType'), + PointPropType: require('PointPropType'), + addons: { LinkedStateMixin: require('LinkedStateMixin'), Perf: undefined,