<!-- Love react-native-masonry? Please consider supporting our collective: π https://opencollective.com/react-native-masonry/donate --> <!--- To help accelerate the resolution of bugs, please follow this template below to give us as much details as possible --> ## Expected Behavior To Render The Masonry Images ## Current Behavior Breaks Down ## Context (Environment) 1- react v16.6.3 2- react-native v0.58.1 react-native-masonry v^0.5.0-alpha.3 All I want to do is to render a simple Masonry but i keep getting this error  i pass the images array with additional data like this ``` [ { uri: 'image_url', description: 'txt' }, { uri: 'image_url', description: 'txt' } ] ``` ``` <Masonry sorted columns={ 3 } bricks={ props.images } /> ```