Fix style.

This commit is contained in:
Dylan Vann 2017-07-26 22:25:23 -04:00
parent 0629faccce
commit a60fd67919
1 changed files with 4 additions and 1 deletions

View File

@ -41,7 +41,10 @@ const getImages = () => {
const getTestProgressCallbacks = label => ({
onLoadStart: () => console.log(`${label} - onLoadStart`),
onProgress: e => console.log(`${label} - onProgress - ${e.nativeEvent.loaded / e.nativeEvent.total}`),
onProgress: e =>
console.log(
`${label} - onProgress - ${e.nativeEvent.loaded / e.nativeEvent.total}`,
),
onLoad: () => console.log(`${label} - onLoad`),
onError: () => console.log(`${label} - onError`),
onLoadEnd: () => console.log(`${label} - onLoadEnd`),