Merge pull request #55 from Permissionless-Software-Foundation/ct-unstable

fix(component extension): Debugging. Further reducing complexity
This commit is contained in:
Chris Troutner
2020-08-12 10:13:00 -07:00
committed by GitHub
+6 -6
View File
@@ -2,7 +2,7 @@
import React from 'react'
// import PropTypes from 'prop-types'
import { Content } from 'adminlte-2-react'
// import { Content } from 'adminlte-2-react'
// import ImportWallet from './import'
// import NewWallet from './create'
// import InfoWallets from './info'
@@ -10,18 +10,16 @@ import { Content } from 'adminlte-2-react'
let _this
class Wallet extends React.Component {
constructor (props) {
constructor(props) {
super(props)
_this = this
this.state = {}
}
render () {
render() {
return (
<>
<Content>
<p>Wallet Component</p>
</Content>
<p>Wallet Component</p>
</>
)
}
@@ -31,6 +29,8 @@ class Wallet extends React.Component {
// <WalletInfo walletInfo={_this.props.walletInfo} />
// )}
// <Content> </Content>
// <NewWallet
// updateBalance={_this.props.updateBalance}
// setWalletInfo={_this.props.setWalletInfo}