From f674572b89ec293d2007d6d53ed019c4ea170033 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 13 Nov 2015 21:18:04 +0000 Subject: [PATCH] update website --- docs/native-components-android.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/native-components-android.html b/docs/native-components-android.html index 5f8b4695cec..99ab000f44c 100644 --- a/docs/native-components-android.html +++ b/docs/native-components-android.html @@ -31,7 +31,7 @@ public class ReactImageManager extends ); }

5. Implement the JavaScript module #

The very final step is to create the JavaScript module that defines the interface layer between Java and JavaScript for the users of your new view. Much of the effort is handled by internal React code in Java and JavaScript and all that is left for you is to describe the propTypes.

// ImageView.js -var { requireNativeComponent } = require('react-native'); +var { requireNativeComponent, PropTypes } = require('react-native'); var iface = { name: 'ImageView',