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 ( - - - - - - ) - } -}