The [rule](https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-wrap-multilines.md) tells me that this is good: ``` var hello = ( Hello ) ``` but this is also accepted: ``` var hello = ( Hello ) ``` ``` 'react/jsx-wrap-multilines': 'error' ``` Did I miss something?