Skip to content

Commit

Permalink
linter fix (ptomasroos#1013)
Browse files Browse the repository at this point in the history
  • Loading branch information
whispyy authored and ptomasroos committed Oct 10, 2019
1 parent cde116d commit fea1649
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Button.ios.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const React = require('react');
const ReactNative = require('react-native');
const {
TouchableOpacity,
TouchableOpacity,
View,
} = ReactNative;

Expand Down
6 changes: 3 additions & 3 deletions SceneComponent.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const React = require('react');
const ReactNative = require('react-native');
const {Component } = React;
const {View, StyleSheet } = ReactNative;
const { Component } = React;
const { View, StyleSheet } = ReactNative;

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

const SceneComponent = (Props) => {
const {shouldUpdated, ...props} = Props;
const { shouldUpdated, ...props } = Props;
return <View {...props}>
<StaticContainer shouldUpdate={shouldUpdated}>
{props.children}
Expand Down

0 comments on commit fea1649

Please sign in to comment.