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