aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/ClientInfoDisplay.js
blob: 34f001beeba5bae22388acb6947413d5b753aa4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
      Client Name: {props.client.Name}
    </div>
  );
}

export default ClientInfoDisplay;