diff options
Diffstat (limited to 'src/components/Display/ClientInfoDisplay.js')
-rw-r--r-- | src/components/Display/ClientInfoDisplay.js | 20 |
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; |