A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/app/root.js

23 lines
433 B

const inherits = require('util').inherits
const Component = require('react').Component
const Provider = require('react-redux').Provider
const h = require('react-hyperscript')
const App = require('./app')
module.exports = Root
inherits(Root, Component)
8 years ago
function Root () { Component.call(this) }
8 years ago
Root.prototype.render = function () {
return (
8 years ago
h(Provider, {
store: this.props.store,
}, [
8 years ago
h(App),
])
)
}