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
ref={e => (this._root = e)}
{...props}
style={style}
source={source}
onLoadStart={onLoadStart}
onProgress={onProgress}
onLoad={onLoad}
onError={onError}
onLoadEnd={onLoadEnd}
style={style}
/>
)
}