[ReactNative] rename nativeProps const to NativeProps

This commit is contained in:
Spencer Ahrens
2015-05-26 19:25:11 -07:00
parent 0689c0790e
commit a4442e4576
3 changed files with 5 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ function verifyPropTypes(
);
}
var nativeProps = viewConfig.nativeProps;
var nativeProps = viewConfig.NativeProps;
for (var prop in nativeProps) {
if (!component.propTypes[prop] &&
!View.propTypes[prop] &&