diff --git a/app/components/Network/TransactionForm.js b/app/components/Network/TransactionForm.js
new file mode 100644
index 00000000..1c9a7599
--- /dev/null
+++ b/app/components/Network/TransactionForm.js
@@ -0,0 +1,23 @@
+import React from 'react'
+import PropTypes from 'prop-types'
+import styles from './TransactionForm.scss'
+
+const TransactionForm = ({}) => (
+
+)
+
+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..ab9c43a0
--- /dev/null
+++ b/app/components/Network/TransactionForm.scss
@@ -0,0 +1,28 @@
+@import '../../variables.scss';
+
+.input {
+ width: 100%;
+ background: $secondary;
+ color: $terminalgreen;
+ -webkit-appearance: none;
+ border: none;
+ border-bottom: 1px solid $terminalgreen;
+ padding: 5px;
+ outline: 0;
+}
+
+.submitContainer {
+ margin-top: 20px;
+ text-align: right;
+}
+
+.submit {
+ padding: 5px;
+ color: $terminalgreen;
+ cursor: pointer;
+
+ &:hover {
+ background: $terminalgreen;
+ color: $secondary;
+ }
+}
\ No newline at end of file
diff --git a/app/routes/network/components/Network.js b/app/routes/network/components/Network.js
index 5236dd41..4a97a021 100644
--- a/app/routes/network/components/Network.js
+++ b/app/routes/network/components/Network.js
@@ -4,6 +4,7 @@ import PropTypes from 'prop-types'
import { InteractiveForceGraph, ForceGraphNode, ForceGraphLink } from 'react-vis-force'
import LoadingBolt from 'components/LoadingBolt'
import PeersList from 'components/Network/PeersList'
+import TransactionForm from 'components/Network/TransactionForm'
import styles from './Network.scss'
@@ -39,7 +40,7 @@ class Network extends Component {
return channels
break
case 3:
- return transaction
+ return
break
}
}
diff --git a/app/variables.scss b/app/variables.scss
index 4948c218..214d8b7e 100644
--- a/app/variables.scss
+++ b/app/variables.scss
@@ -11,6 +11,7 @@ $darkestgrey: #999999;
$bluegrey: #555459;
$green: #0bb634;
+$terminalgreen: #00FF00;
$red: #ff0b00;
$blue: #007bb6;
$curve: cubic-bezier(0.650, 0.000, 0.450, 1.000);
\ No newline at end of file