Update references to `image!` to use require syntax

Summary: Closes https://github.com/facebook/react-native/pull/5089

Reviewed By: svcscm

Differential Revision: D2798548

Pulled By: androidtrunkagent

fb-gh-sync-id: 9e561fcfc103102d4c4bfbebc463eadb2fdd561a
This commit is contained in:
Satyajit Sahoo 2016-01-04 07:40:15 -08:00 committed by facebook-github-bot-4
parent b8aac8b77a
commit 68147cf39c
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ var {
* <View> * <View>
* <Image * <Image
* style={styles.icon} * style={styles.icon}
* source={require('image!myIcon')} * source={require('./myIcon.png')}
* /> * />
* <Image * <Image
* style={styles.logo} * style={styles.logo}
@ -63,7 +63,7 @@ var Image = React.createClass({
/** /**
* `uri` is a string representing the resource identifier for the image, which * `uri` is a string representing the resource identifier for the image, which
* could be an http address, a local file path, or the name of a static image * could be an http address, a local file path, or the name of a static image
* resource (which should be wrapped in the `require('image!name')` function). * resource (which should be wrapped in the `require('./path/to/image.png')` function).
*/ */
source: PropTypes.oneOfType([ source: PropTypes.oneOfType([
PropTypes.shape({ PropTypes.shape({