diff --git a/releases/next/docs/touchablehighlight.html b/releases/next/docs/touchablehighlight.html index 40e5b6ff33e..4cf892a5acc 100644 --- a/releases/next/docs/touchablehighlight.html +++ b/releases/next/docs/touchablehighlight.html @@ -8,7 +8,7 @@ backgroundColor of the wrapped view isn't explicitly set to an opaque color <TouchableHighlight onPress={this._onPressButton}> <Image style={styles.button} - source={require('image!myButton')} + source={require('./myButton.png')} /> </TouchableHighlight> ); diff --git a/releases/next/docs/touchableopacity.html b/releases/next/docs/touchableopacity.html index 268a2e9edac..fed8e96e559 100644 --- a/releases/next/docs/touchableopacity.html +++ b/releases/next/docs/touchableopacity.html @@ -6,7 +6,7 @@ easy to add to an app without weird side-effects.

Example:

={this._onPressButton}> <Image style={styles.button} - source={require('image!myButton')} + source={require('./myButton.png')} /> </TouchableOpacity> );