diff --git a/app/components/Network/NetworkGraph.js b/app/components/Network/NetworkGraph.js index 38f3a4e6..b182d267 100644 --- a/app/components/Network/NetworkGraph.js +++ b/app/components/Network/NetworkGraph.js @@ -37,7 +37,6 @@ class NetworkGraph extends Component { ) } - console.log('selectedChannelIds: ', selectedChannelIds) return (
( +
+ tx form +
+) + +TransactionForm.propTypes = { +} + +export default TransactionForm diff --git a/app/components/Network/TransactionForm.scss b/app/components/Network/TransactionForm.scss new file mode 100644 index 00000000..e69de29b diff --git a/app/routes/network/components/Network.js b/app/routes/network/components/Network.js index f0c774e2..4df80ba9 100644 --- a/app/routes/network/components/Network.js +++ b/app/routes/network/components/Network.js @@ -6,6 +6,7 @@ import { InteractiveForceGraph, ForceGraphNode, ForceGraphLink } from 'react-vis import NetworkGraph from 'components/Network/NetworkGraph' import PeersList from 'components/Network/PeersList' import ChannelsList from 'components/Network/ChannelsList' +import TransactionForm from 'components/Network/TransactionForm' import styles from './Network.scss' @@ -44,7 +45,7 @@ class Network extends Component { return break case 3: - return

transactions

+ return break } } diff --git a/app/routes/network/components/Network.scss b/app/routes/network/components/Network.scss index 0bcefb0e..4d49bffe 100644 --- a/app/routes/network/components/Network.scss +++ b/app/routes/network/components/Network.scss @@ -73,7 +73,7 @@ border-bottom: 1px solid #88D4A2; } - &.transactionsTab:hover, &.transitionsTab.active { + &.transactionsTab:hover, &.transactionsTab.active { border-bottom: 1px solid #FFDC53; } }