Skip to content

Commit a50e3f0

Browse files
authored
Merge pull request #875 from janicduplessis/patch-1
Fix invalid object rest syntax
2 parents 74a0b3f + 6e90065 commit a50e3f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SceneComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const {View, StyleSheet, } = ReactNative;
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)