From 5a8126463d9b3d772aea858f78975733cf10e745 Mon Sep 17 00:00:00 2001 From: Jordan Brookman Date: Sat, 7 May 2022 21:15:45 -0400 Subject: [PATCH] Add receive screeen --- frontend/src/routes/Receive.js | 60 ++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 frontend/src/routes/Receive.js diff --git a/frontend/src/routes/Receive.js b/frontend/src/routes/Receive.js new file mode 100644 index 0000000..d81d0a0 --- /dev/null +++ b/frontend/src/routes/Receive.js @@ -0,0 +1,60 @@ +import { ContactsIcon, CopyIcon, QrCodeIcon, ShareIcon } from "@bitcoin-design/bitcoin-icons-react/filled"; +import Button from "../components/Button"; +import InputText from "../components/InputText"; + +const Receive = () => { + return ( + <> +
+
+
+

Receive payment

+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ + + +
+ + +
+

This is the Receive screen

+
+ + ); +}; + +export default Receive; \ No newline at end of file