fireship.io
fireship.io copied to clipboard
Small typo in /courses/react/basics-conditional-rendering
In "Option 3: Logical And".
Instead of
{count && 2 === 0 ? <h1>Count is even</h1> }
it should be
{count && 2 === 0 && <h1>Count is even</h1> }