From 13faea9acadc8d640bbe1e0d1ede4dbdcd69e7fa Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Mon, 3 May 2021 22:01:52 +0530 Subject: added a form to manipulate some data about the document and the client info --- src/components/Display/ClientInfoDisplay.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/components/Display/ClientInfoDisplay.js (limited to 'src/components/Display') 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 ( +
+ clientID: {props.clientID} +
+ ); +} + +export default ClientInfoDisplay; -- cgit v1.2.3