Me parece igual ao exemplo exposto mas não consigo resolver....
import React, { Component } from 'react';
import FotoItem from './FotoItem';
export default class Timeline extends Component {
constructor(){
super();
this.state = {fotos:[]};
}
componentDidMount() {
fetch('https://instalura-api.herokuapp.com/api/public/fotos/rafael')
.then(response => response.json)
.then(fotos => {
this.setState({fotos:fotos})
});
}
render(){
return (
<div className="fotos container">
{
this.state.fotos.map(foto => <FotoItem/>)
}
</div>
);
}
}
`