aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/ClientInfoDisplay.js
blob: 48e8c6dea399154e5302e15e429c2e6aa2e0760c (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>
      clientID: {props.clientID}
    </div>
  );
}

export default ClientInfoDisplay;