From 4f515373cf966ec826530f81f7bf83618b919906 Mon Sep 17 00:00:00 2001 From: Tan Dat Date: Sat, 26 Jan 2019 14:07:29 +0700 Subject: [PATCH] Remove trailing comma --- SceneComponent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SceneComponent.js b/SceneComponent.js index e715b6a7..3540388e 100644 --- a/SceneComponent.js +++ b/SceneComponent.js @@ -6,7 +6,7 @@ const {View, StyleSheet, } = ReactNative; const StaticContainer = require('./StaticContainer'); const SceneComponent = (Props) => { - const {shouldUpdated, ...props, } = Props; + const {shouldUpdated, ...props } = Props; return {props.children}