Fix react-native export for PointPropType

Summary: PointPropType was split in f3c8027595 but we forgot to change this reference. It was previously requiring PointPropType which now only exports a flow type.

Reviewed By: RSNara

Differential Revision: D10082048

fbshipit-source-id: 6dbfe434873d00d1203aaea65fb3129dee5a00c1
This commit is contained in:
Eli White
2018-09-27 10:45:50 -07:00
committed by Facebook Github Bot
parent 0625c348cc
commit b3bf7e0cf9

View File

@@ -307,7 +307,7 @@ const ReactNative = {
return require('EdgeInsetsPropType');
},
get PointPropType() {
return require('PointPropType');
return require('DeprecatedPointPropType');
},
get ViewPropTypes() {
return require('DeprecatedViewPropTypes');