File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
const React = require ( 'react' ) ;
2
2
const ReactNative = require ( 'react-native' ) ;
3
3
const {
4
- TouchableOpacity,
4
+ TouchableOpacity,
5
5
View,
6
6
} = ReactNative ;
7
7
Original file line number Diff line number Diff line change 1
1
const React = require ( 'react' ) ;
2
2
const ReactNative = require ( 'react-native' ) ;
3
- const { Component } = React ;
4
- const { View, StyleSheet } = ReactNative ;
3
+ const { Component } = React ;
4
+ const { View, StyleSheet } = ReactNative ;
5
5
6
6
const StaticContainer = require ( './StaticContainer' ) ;
7
7
8
8
const SceneComponent = ( Props ) => {
9
- const { shouldUpdated, ...props } = Props ;
9
+ const { shouldUpdated, ...props } = Props ;
10
10
return < View { ...props } >
11
11
< StaticContainer shouldUpdate = { shouldUpdated } >
12
12
{ props . children }
You can’t perform that action at this time.
0 commit comments