aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/ClientInfoDisplay.tsx
blob: ad65e407ba7d054f5d114d9f92b814778de70106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * 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 { Person } from "./../../interfaces";
import "./Display.scss";

interface Props {
  client: Person
}

const ClientInfoDisplay: React.FC<Props> = (props) => {
  return (
    <table className={"ClientInfoDisplay"}>
      <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;