Instead of
const MyComponent = () => { return isTrue ? <p>True!</p> : null };
Use short-circuit evaluation
const MyComponent = () => { return isTrue && <p>True!</p> };
Instead of
const MyComponent = () => { return isTrue ? <p>True!</p> : null };
Use short-circuit evaluation
const MyComponent = () => { return isTrue && <p>True!</p> };
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)