mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-21 16:52:06 -07:00
fix(component extension): Debugging. Further reducing complexity
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user