aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/select-app.js
blob: 3cba44052711a4316aad3005ae7bfc36755044dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const inherits = require('util').inherits
const Component = require('react').Component
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const App = require('./app')
const OldApp = require('../../old-ui/app/app')

function mapStateToProps (state) {
    return { betaUI: state.metamask.featureFlags.betaUI }
}

module.exports = connect(mapStateToProps)(SelectedApp)

inherits(SelectedApp, Component)
function SelectedApp () { Component.call(this) }

SelectedApp.prototype.render = function () {
  const { betaUI } = this.props
  const Selected = betaUI ? App : OldApp
  return h(Selected)
}