Skip to content

Commit fea1649

Browse files
whispyyptomasroos
authored andcommitted
linter fix (#1013)
1 parent cde116d commit fea1649

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Button.ios.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const React = require('react');
22
const ReactNative = require('react-native');
33
const {
4-
TouchableOpacity,
4+
TouchableOpacity,
55
View,
66
} = ReactNative;
77

SceneComponent.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
const React = require('react');
22
const ReactNative = require('react-native');
3-
const {Component } = React;
4-
const {View, StyleSheet } = ReactNative;
3+
const { Component } = React;
4+
const { View, StyleSheet } = ReactNative;
55

66
const StaticContainer = require('./StaticContainer');
77

88
const SceneComponent = (Props) => {
9-
const {shouldUpdated, ...props} = Props;
9+
const { shouldUpdated, ...props } = Props;
1010
return <View {...props}>
1111
<StaticContainer shouldUpdate={shouldUpdated}>
1212
{props.children}

0 commit comments

Comments
 (0)