azat-co / react-quickly

Source code for React Quickly [Manning, 2018]: Painless Web Apps with React, JSX, Redux, and GraphQL 📕

Home Page:https://www.manning.com/books/react-quickly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ch05 logger Listing 5.1 has error

calkusi opened this issue · 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/>

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