aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/ClientInfoDisplay.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-05-03 22:01:52 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-05-03 22:01:52 +0530
commit13faea9acadc8d640bbe1e0d1ede4dbdcd69e7fa (patch)
treeb2beb2785d5b90b8ae64bdbe75ccaef86ad3b781 /src/components/Display/ClientInfoDisplay.js
parent6fb69cc9c26c70ce54a1bf8ccf8ce8a7d2b957b8 (diff)
added a form to manipulate some data about the document and the client info
Diffstat (limited to 'src/components/Display/ClientInfoDisplay.js')
-rw-r--r--src/components/Display/ClientInfoDisplay.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/Display/ClientInfoDisplay.js b/src/components/Display/ClientInfoDisplay.js
new file mode 100644
index 0000000..48e8c6d
--- /dev/null
+++ b/src/components/Display/ClientInfoDisplay.js
@@ -0,0 +1,20 @@
+/*
+ * OpenBills - Self hosted browser app to generate and keep track of simple invoices
+ * Version - 0
+ * Licensed under the MIT license - https://opensource.org/licenses/MIT
+ *
+ * Copyright (c) 2021 Vidhu Kant Sharma
+*/
+
+import React from "react";
+import "./Display.scss";
+
+const ClientInfoDisplay = (props) => {
+ return (
+ <div>
+ clientID: {props.clientID}
+ </div>
+ );
+}
+
+export default ClientInfoDisplay;