aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/ClientInfoDisplay.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Display/ClientInfoDisplay.js')
-rw-r--r--src/components/Display/ClientInfoDisplay.js30
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;