diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-26 23:26:20 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-26 23:26:20 +0530 |
commit | e54214c8ecdcf264a0f055ae24afe3299c0c7697 (patch) | |
tree | f030fe9d80174a27a79f026e6b7d6775ca44e0ac /src/components/Display/ClientInfoDisplay.js | |
parent | 7f64269194103cc7436041b59676cd96e4a099a0 (diff) |
Fixed and styled ClientInfoDisplay
Diffstat (limited to 'src/components/Display/ClientInfoDisplay.js')
-rw-r--r-- | src/components/Display/ClientInfoDisplay.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/components/Display/ClientInfoDisplay.js b/src/components/Display/ClientInfoDisplay.js deleted file mode 100644 index 7eb46d2..0000000 --- a/src/components/Display/ClientInfoDisplay.js +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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) => { - //console.log(props.client) - return ( - <table> - <tbody> - <tr> - <td>Client Name:</td> - <td>{props.client.Name}</td> - </tr> - <tr> - <td>Client Address:</td> - <td>{props.client.Address}</td> - </tr> - </tbody> - </table> - ); -} - -export default ClientInfoDisplay; |