react-quickly icon indicating copy to clipboard operation
react-quickly copied to clipboard

ch05 logger Listing 5.1 has error

Open calkusi opened this issue 4 years ago • 1 comments

Listing 5.1 in the book has an error in the Content component class render() method:

if (this.state.counter > 2) return

should be:

if (this.state.counter > 2) return <div/>

calkusi avatar Jul 27 '19 05:07 calkusi

The source content.jsx for ch05 logger project is correct.

calkusi avatar Jul 27 '19 05:07 calkusi