From ef344ef3328ac2c7a406d5a2670b20b798f11726 Mon Sep 17 00:00:00 2001 From: Alan Friedman Date: Mon, 27 May 2019 16:22:17 -0400 Subject: [PATCH] Use Home component as root --- client/src/root.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/root.js b/client/src/root.js index d59b4c3..402ad85 100644 --- a/client/src/root.js +++ b/client/src/root.js @@ -8,7 +8,7 @@ import { Provider } from 'react-redux' import configureStore from 'store' import { BrowserRouter, Route, Switch } from 'react-router-dom' import shortId from 'shortid' -import Home from 'containers/Home' +import Home from 'components/Home' import { hasTouchSupport } from './utils/dom' const store = configureStore()