diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-26 23:26:20 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-26 23:26:20 +0530 |
commit | e54214c8ecdcf264a0f055ae24afe3299c0c7697 (patch) | |
tree | f030fe9d80174a27a79f026e6b7d6775ca44e0ac /src/components/Display | |
parent | 7f64269194103cc7436041b59676cd96e4a099a0 (diff) |
Fixed and styled ClientInfoDisplay
Diffstat (limited to 'src/components/Display')
-rw-r--r-- | src/components/Display/ClientInfoDisplay.tsx (renamed from src/components/Display/ClientInfoDisplay.js) | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/components/Display/ClientInfoDisplay.js b/src/components/Display/ClientInfoDisplay.tsx index 7eb46d2..ad65e40 100644 --- a/src/components/Display/ClientInfoDisplay.js +++ b/src/components/Display/ClientInfoDisplay.tsx @@ -7,12 +7,16 @@ */ import React from "react"; +import { Person } from "./../../interfaces"; import "./Display.scss"; -const ClientInfoDisplay = (props) => { - //console.log(props.client) +interface Props { + client: Person +} + +const ClientInfoDisplay: React.FC<Props> = (props) => { return ( - <table> + <table className={"ClientInfoDisplay"}> <tbody> <tr> <td>Client Name:</td> |