Closed
Description
Given this code, check should not pass
const Grade = ({ grade }) =>
<View style={styles.gradeContainer}>
<Text style={styles.grade}>{grade}</Text>
</View>;
For this code, check should pass:
const Grade = ({ grade }) => (
<View style={styles.gradeContainer}>
<Text style={styles.grade}>{grade}</Text>
</View>
);
Activity
react/jsx-wrap-multilines
should throw when using arrow functions #874Merge pull request #791 from Lingvokot/790-stateless-multiline-wrap
3 remaining items