From ba3500f718f8c52ce1a58dcf33346181c55bba0d Mon Sep 17 00:00:00 2001 From: NikolaBorislavovHristov Date: Tue, 11 Dec 2018 11:04:10 +0200 Subject: [PATCH] App wrapped in React.StrictMode --- src/app/app.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/app.js b/src/app/app.js index 2ef3ecba1..e69e0b6ea 100644 --- a/src/app/app.js +++ b/src/app/app.js @@ -1,4 +1,4 @@ -import React, { PureComponent } from 'react'; +import React, { PureComponent, StrictMode } from 'react'; import { Router } from 'stremio-common'; import routerConfig from './routerConfig'; import styles from './styles'; @@ -6,10 +6,12 @@ import styles from './styles'; class App extends PureComponent { render() { return ( - + + + ); } }