The new es6 arrow functions say return is implicit under some circumstances:
return
The expression is also the implicit return value of that fun
There's another case here.
When writing a functional component in React, you can use parentheses to wrap implicitly returned JSX.
const FunctionalComponent = () => ( );