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
Megan Lee -
Olga T. -
Gladiators Battle -
Patrick -
Top comments (0)