Guest User

Untitled

a guest
Oct 18th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. render() {
  2. Object.keys(this.state.photos).map((key) => {
  3. storageRef.child('front.jpg').getDownloadURL().then(function(url) {
  4. photosArray.push(<img key={key} src={url} />);
  5.  
  6. });
  7.  
  8. });
  9.  
  10. return(
  11. <div>{photosArray}</div>
  12. )
  13.  
  14. return (<div>{photosArray}</div>)
Add Comment
Please, Sign In to add comment