blob: ad50ee13dff52525aa60a01389a7950cbc6c1cac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const AccountAndTransactionDetails = require('./account-and-transaction-details')
const UnlockScreen = require('./components/pages/unauthenticated/unlock')
module.exports = MainContainer
inherits(MainContainer, Component)
function MainContainer () {
Component.call(this)
}
MainContainer.prototype.render = function () {
// 3. summarize:
// switch statement goes inside MainContainer,
// or a method in renderPrimary
// - pass resulting h() to MainContainer
// - error checking in separate func
// - router in separate func
let contents = {
component: AccountAndTransactionDetails,
key: 'account-detail',
style: {},
}
return h('div.main-container', {
style: contents.style,
}, [
h(contents.component, {
key: contents.key,
}, []),
])
}
|