January 2020
Intermediate to advanced
530 pages
11h 11m
English
The render() component shown here simply transfers the state and methods to the Container component, where it will be distributed to the various child components:
render() { return ( <div> <Container acc={this.state.acc} accounts={this.state.accounts} transactions={this.state.transactions} getAccountTransactions={this.getAccountTransactions}/> </div> )}
Let's look at the method used to fetch the account transactions.
Read now
Unlock full access