azat-co / react-quickly

Source code for React Quickly [Manning, 2017]: Painless Web Apps with React, JSX, Redux, and GraphQL 📕
http://reactquickly.co
MIT License
544 stars 423 forks source link

ch05 logger Listing 5.1 has error #34

Open calkusi opened 5 years ago

calkusi commented 5 years ago

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 commented 5 years ago

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