Re-enable rule line-between-class-members (#10862)

This commit is contained in:
Kamil Gabryjelski
2020-09-15 00:41:32 +02:00
committed by GitHub
parent 91b8c8afc9
commit e28f3d6220
53 changed files with 277 additions and 3 deletions

View File

@@ -36,6 +36,7 @@ export default class TextControl extends React.Component<TextControlProps> {
super(props);
this.onChange = this.onChange.bind(this);
}
onChange(event: any) {
let { value } = event.target;
@@ -59,6 +60,7 @@ export default class TextControl extends React.Component<TextControlProps> {
}
this.props.onChange(value, errors);
}
render() {
const { value: rawValue } = this.props;
const value =