Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
iRaySpace committed Apr 16, 2019
1 parent 778dc0b commit d06f58d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/stories/components/EntryComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,16 @@ export default class EntryComponent extends React.PureComponent {

onPress = () => {
this.props.onPress(this.props.value);
}
};

onLongPress = () => {
this.props.onLongPress(this.props.value);
}
};

render() {
return (
<View>
<TouchableOpacity
onPress={this.onPress}
onLongPress={this.onLongPress}
>
<TouchableOpacity onPress={this.onPress} onLongPress={this.onLongPress}>
<View
style={{
margin: 2,
Expand Down

0 comments on commit d06f58d

Please sign in to comment.