Sometimes I forget the return statement in a React component, like:
function Cat() { <div>Meow</div> }
// should be
function Cat() { return <div>Meow</div> }
This results in the error:
Cat(...): Nothing was returned from render
is there a lint rule to warn me about that?