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> ); } });