From 45a0d58effe9c34bda13e18745b50575ea61d2b3 Mon Sep 17 00:00:00 2001 From: Quan Pham Date: Fri, 6 Jul 2018 04:13:25 +0700 Subject: [PATCH] Removed trailing comma, which is a breaking change for RN 0.56 --- SceneComponent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SceneComponent.js b/SceneComponent.js index 9c7cd814..e8ee61e9 100644 --- a/SceneComponent.js +++ b/SceneComponent.js @@ -1,7 +1,7 @@ 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');