From 6b170f84643295481f9787430729846b169668f1 Mon Sep 17 00:00:00 2001 From: Evgeny Boxer Date: Tue, 31 Oct 2017 22:21:21 +1100 Subject: [PATCH] Remove file --- app/containers/Root.jsx | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 app/containers/Root.jsx diff --git a/app/containers/Root.jsx b/app/containers/Root.jsx deleted file mode 100644 index df3f40ec9..000000000 --- a/app/containers/Root.jsx +++ /dev/null @@ -1,22 +0,0 @@ -// @flow -import React, { Component } from 'react' -import { Provider } from 'react-redux' -import { BrowserRouter } from 'react-router-dom' -import Routes from '../Routes' - -type Props = { - store: Object, -} - -export default class Root extends Component { - render () { - const { store } = this.props - return ( - - - - - - ) - } -}