-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinitialUsers.js
More file actions
44 lines (44 loc) · 1.16 KB
/
initialUsers.js
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
// Dummy user data
export const initialUsers = [
{
id: 1,
name: "Alice Johnson",
email: "alice.johnson@example.com",
password: "password123",
role: "BOTP Employee",
score: 85,
department: "Customer Support",
joinDate: "2022-05-15",
performanceMetrics: {
callsHandled: 245,
customerSatisfaction: 92,
responseTime: "1.5 min",
closedTickets: 198
}
},
{
id: 2,
name: "Bob Williams",
email: "bob.williams@example.com",
password: "securepass456",
role: "BOTP Employee",
score: 75,
department: "Technical Support",
joinDate: "2023-01-10",
performanceMetrics: {
callsHandled: 187,
customerSatisfaction: 85,
responseTime: "2.1 min",
closedTickets: 163
}
},
{
id: 3,
name: "Emma Wilson",
email: "emma.wilson@example.com",
password: "managerpass789",
role: "Manager",
department: "Operations",
joinDate: "2020-08-22"
},
];