Skip to content

Commit

Permalink
Fix prop order to be consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanVann committed Feb 1, 2018
1 parent 1cf5452 commit 507df3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FastImage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
)
}
Expand Down

0 comments on commit 507df3d

Please sign in to comment.