Reputation: 420
I cant access data object in the red circle (see image) but I can access it outside , please help as I cant understand what I am doing wrong?
Upvotes: 2
Views: 749
Reputation: 3733
A simple example of a class component with state
export default class extends React.Component {
constructor() { this.state = {data:[]}; }
componentDidMount() {
//Fetch data
getTrendingVideo.then() { res => this.setState({data: res})}
}
render() {
console.log(this.state.data)
}
}
Upvotes: 2