Conditional rendering patterns and returning null in React
React supports several conditional rendering styles, and returning `null` is the normal way to render nothing.
- Use the simplest pattern for the case
- Ternaries and logical && are common
- Returning null is valid
Conditional rendering patterns and returning null in React