forked from muhamadzolfaghari/ladder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatHistory.tsx
48 lines (45 loc) · 1.21 KB
/
ChatHistory.tsx
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// app/components/ChatHistory.tsx
import React from "react";
import {
Box,
List,
ListItem,
ListItemText,
Typography,
Card,
CardContent,
Grid,
} from "@mui/material";
interface ChatHistoryProps {
messages: { text: string; date: string }[];
}
const ChatHistory: React.FC<ChatHistoryProps> = ({ messages }) => {
return (
<Box my={2}>
<Typography variant="h5">Chat History</Typography>
<List>
{messages.map((msg, index) => (
<ListItem key={index} sx={{ paddingX: "0px" }}>
<Card variant="outlined" style={{ width: "100%" }}>
<CardContent>
<Grid
container
justifyContent="space-between"
alignItems="center"
>
<Grid item xs={8}>
<Typography variant="body1">{msg.text}</Typography>
</Grid>
<Grid item xs={4} style={{ textAlign: "right" }}>
<Typography variant="body1">{msg.date}</Typography>
</Grid>
</Grid>
</CardContent>
</Card>
</ListItem>
))}
</List>
</Box>
);
};
export default ChatHistory;