Skip to content
This repository has been archived by the owner on Oct 17, 2019. It is now read-only.

Commit

Permalink
moved AddressPanel to Device
Browse files Browse the repository at this point in the history
  • Loading branch information
mvele10 committed Jul 29, 2018
1 parent 9905922 commit 7725c80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/Bitcoin.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import React, { Component } from 'react'
import BitcoinPanel from './Panels/BitcoinPanel'
import AddressesPanel from './Panels/AddressesPanel'

export default class Bitcoin extends Component {
render() {
return (
<div>
<BitcoinPanel />
<AddressesPanel />
</div>
)
}
Expand Down
3 changes: 2 additions & 1 deletion src/Device.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import React, { Component } from 'react'
import AddressesPanel from './Panels/AddressesPanel'

export default class Device extends Component {
render() {
return (
<div>
Coming soon...
<AddressesPanel />
</div>
)
}
Expand Down

0 comments on commit 7725c80

Please sign in to comment.