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
Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.
Anton -
Nathan Tarbert -
Dev Sk -
Ahmed Rakan -
Top comments (0)