diff --git a/Venmo_Dapp/src/App.js b/Venmo_Dapp/src/App.js index 9a1c2386..7fa2bad0 100644 --- a/Venmo_Dapp/src/App.js +++ b/Venmo_Dapp/src/App.js @@ -1,5 +1,6 @@ import Navbar from './components/Navbar'; import styles from './styles/App.module.css'; +import TransactionForm from './components/transaction/TransactionForm.jsx'; import './App.css'; @@ -9,6 +10,13 @@ function App() {
+ +
+
{/* Activity */}
+
+ +
+
); } diff --git a/Venmo_Dapp/src/components/transaction/TransactionForm.jsx b/Venmo_Dapp/src/components/transaction/TransactionForm.jsx index 7d15f8b7..8d370194 100644 --- a/Venmo_Dapp/src/components/transaction/TransactionForm.jsx +++ b/Venmo_Dapp/src/components/transaction/TransactionForm.jsx @@ -1,5 +1,49 @@ +import { CurrencyDollarIcon, SwitchVerticalIcon } from "@heroicons/react/outline" + +import styles from "../../styles/Transaction.module.css" + function TransactionForm() { - return
+ return
+

Send Payment / Request

+ +
+
+
+ +

Swap to/from

+
+ +
+
+

To

+ + +
+ +
+

Message

+ +
+
+ +
+

Amount

+
+
+
+ + +
+
+ +
+ +
+ +
+
+ +
} export default TransactionForm