Fix prop order to be consistent.

This commit is contained in:
Dylan Vann 2018-01-31 20:23:16 -05:00
parent 1cf545253c
commit 507df3db6a

View File

@ -38,13 +38,13 @@ class FastImage extends Component {
<Image <Image
ref={e => (this._root = e)} ref={e => (this._root = e)}
{...props} {...props}
style={style}
source={source} source={source}
onLoadStart={onLoadStart} onLoadStart={onLoadStart}
onProgress={onProgress} onProgress={onProgress}
onLoad={onLoad} onLoad={onLoad}
onError={onError} onError={onError}
onLoadEnd={onLoadEnd} onLoadEnd={onLoadEnd}
style={style}
/> />
) )
} }