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
Emmanuel Ayinde -
Scofield Idehen -
Zuki HoKo -
aditi gupta1633 -
Top comments (0)