From 23d8c2fe4bb0a18d82fa443be644ada73cbd0095 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 20 May 2016 21:19:58 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/linking.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/releases/next/docs/linking.html b/releases/next/docs/linking.html index ac3b2fb1880..b731d117bb0 100644 --- a/releases/next/docs/linking.html +++ b/releases/next/docs/linking.html @@ -54,7 +54,7 @@ it will give the link url, otherwise it will give null

NOTE: Linking, StyleSheet, Text, - TouchableNativeFeedback, + TouchableOpacity, View, } = ReactNative; var UIExplorerBlock = require('./UIExplorerBlock'); @@ -77,12 +77,12 @@ it will give the link url, otherwise it will give null

NOTE: render: function() { return ( - <TouchableNativeFeedback + <TouchableOpacity onPress={this.handleClick}> <View style={styles.button}> <Text style={styles.text}>Open {this.props.url}</Text> </View> - </TouchableNativeFeedback> + </TouchableOpacity> ); } });