Boa tarde! Onde posso encontrar o arquivo json usado na aula: https://cursos.alura.com.br/course/react-parte-2/task/24922
componentWillMount(){
fetch('http://localhost:8080/api/public/fotos/rafael')
.then(response => response.json())
.then(fotos => {
this.setState({fotos:fotos})
})
}