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
Abhay Singh Kathayat -
Abhay Singh Kathayat -
Abhay Singh Kathayat -
Prince -
Top comments (0)