This commit is contained in:
E
2021-03-10 19:51:31 -07:00
parent fa6809b507
commit 6720816a97
4 changed files with 52 additions and 20 deletions
+8 -5
View File
@@ -53,16 +53,19 @@ export const Session = (props: Props) => {
return (
<Content>
<Row justify="center">
<Typography.Title>Client: {client?.name}</Typography.Title>
</Row>
<Typography.Title className="page-head" level={3}>
Session View
</Typography.Title>
<Row justify="space-around" style={{ width: '60%', margin: 'auto' }}>
<Typography.Text>
<strong>email:</strong> {client?.email}
<strong>Name:</strong> {client?.name}
</Typography.Text>
<Typography.Text>
<strong>phone:</strong> {client?.phone}
<strong>Email:</strong> {client?.email}
</Typography.Text>
<Typography.Text>
<strong>Phone:</strong> {client?.phone}
</Typography.Text>
</Row>
<Divider />