From 6a586ac38fb5ca718a7e15eee3b24e68308d8d50 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sat, 16 Dec 2017 16:28:45 +0000 Subject: [PATCH] Rename the Root to LoginGate because that's all it does. --- src/App.tsx | 4 ++-- src/{Root.tsx => LoginGate.tsx} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{Root.tsx => LoginGate.tsx} (100%) diff --git a/src/App.tsx b/src/App.tsx index 3b78098..d51c85f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,7 +13,7 @@ import NavigationMenu from 'material-ui/svg-icons/navigation/menu'; import './App.css'; import SideMenu from './SideMenu'; -import Root from './Root'; +import LoginGate from './LoginGate'; import { RouteResolver } from './routes'; import * as C from './constants'; @@ -118,7 +118,7 @@ class App extends React.PureComponent { - + diff --git a/src/Root.tsx b/src/LoginGate.tsx similarity index 100% rename from src/Root.tsx rename to src/LoginGate.tsx