From 1689c46f20a8b4021e07fbbc66b1999b7ca940b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dandelion=20Man=C3=A9?= Date: Sat, 7 Jul 2018 11:12:36 -0700 Subject: [PATCH] Remove useless nav bar, always load cred explorer (#503) There's no sense having a landing page with no content and a nav bar with only one meaningful options. We can re-add them later if we actually need navigation Test plan: Local testing --- src/app/App.js | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/src/app/App.js b/src/app/App.js index b6f8bdf..0f786ac 100644 --- a/src/app/App.js +++ b/src/app/App.js @@ -1,38 +1,11 @@ // @flow import React from "react"; -import {BrowserRouter as Router, Route, NavLink} from "react-router-dom"; import CredExplorer from "./credExplorer/App"; export default class App extends React.Component<{}> { render() { - const CRED_EXPLORER_ROUTE = "/explorer"; - return ( - - - - -
- - -
-
- ); + return ; } } - -const Home = () => ( -
-

Welcome to SourceCred! Please make yourself at home.

-
-);