/* * 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) => { return (
Client Name: {props.client.Name}
Client Address: {props.client.Address}
); } export default ClientInfoDisplay;