const { repos } = this.state.repos;
Вы звоните .map
на объекте. state
является объектом, а repos
является членом state
.
Но, если вы хотите отобразить state
, объект, вы должны сделать что-то вроде этого:
const repoItems = Object.keys(repos).map( repoKey => {
// Now you are using the keys of the object as an array
// so you can access each object like this:
// { repos[repoKey].member_name }
// for instance, in your code above, the first line in the map would be this:
<div key={repo[repoKey].id} className="card card-body mb-2">
// ...and then later...
<Link to={repo[repoKey].html_url} className="text-info" target="_blank">
{repo[repoKey].name}
</Link>
})