aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/root.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-02-01 10:08:49 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-02-01 10:08:49 +0800
commit0c6fef3dec4f3ba70e8e86275ee9db4f2d58d129 (patch)
tree17d4315158490ff889326e821802468ca23a2afa /ui/app/root.js
parentecc39c5a7abd8c8794d5565c1bc7d213d3514d61 (diff)
downloadtangerine-wallet-browser-0c6fef3dec4f3ba70e8e86275ee9db4f2d58d129.tar.gz
tangerine-wallet-browser-0c6fef3dec4f3ba70e8e86275ee9db4f2d58d129.tar.zst
tangerine-wallet-browser-0c6fef3dec4f3ba70e8e86275ee9db4f2d58d129.zip
Add create new account routes, fix conflicts from uat updates
Diffstat (limited to 'ui/app/root.js')
-rw-r--r--ui/app/root.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/ui/app/root.js b/ui/app/root.js
index 64f365c9e..09deae1b1 100644
--- a/ui/app/root.js
+++ b/ui/app/root.js
@@ -3,7 +3,6 @@ const PropTypes = require('prop-types')
const { Provider } = require('react-redux')
const h = require('react-hyperscript')
const SelectedApp = require('./select-app')
-const { HashRouter } = require('react-router-dom')
class Root extends Component {
render () {
@@ -11,11 +10,7 @@ class Root extends Component {
return (
h(Provider, { store }, [
- h(HashRouter, {
- hashType: 'noslash',
- }, [
- h(SelectedApp),
- ]),
+ h(SelectedApp),
])
)
}