From 3207c367ed69bdda900f40a8323ce5db4b0fcca7 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Wed, 26 Apr 2017 22:59:51 -0500 Subject: [PATCH] routing uses new dir structure; wire up ViewWallet route --- common/routing/index.jsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/common/routing/index.jsx b/common/routing/index.jsx index 04e10696..45d1c18f 100644 --- a/common/routing/index.jsx +++ b/common/routing/index.jsx @@ -1,19 +1,25 @@ import React from "react"; import {browserHistory, Redirect, Route} from "react-router"; import {useBasename} from "history"; -import {App, Tabs} from "containers"; +import {App} from "containers"; +import GenerateWallet from "containers/Tabs/GenerateWallet" +import ViewWallet from "containers/Tabs/ViewWallet" + +console.log(GenerateWallet) export const history = getHistory() export const Routing = () => ( - + + + ) function getHistory() { - const basename = '' + const basename = '' return useBasename(() => browserHistory)({basename}) }