57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
|
|
export const htmlTableData = [
|
||
|
|
{
|
||
|
|
id: 1,
|
||
|
|
name: "John Smith",
|
||
|
|
email: "john.smith@email.com",
|
||
|
|
role: undefined,
|
||
|
|
status: null,
|
||
|
|
applicationDate: "2024-02-15",
|
||
|
|
lastUpdated: "2024-03-20",
|
||
|
|
department: "Engineering",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 2,
|
||
|
|
name: "Emma Wilson",
|
||
|
|
email: "emma.w@email.com",
|
||
|
|
role: "Designer",
|
||
|
|
status:
|
||
|
|
"<span style='background-color: #22c55e; color: white; padding: 4px 12px; border-radius: 20px; font-size: 14px;'><strong>Active</strong></span>",
|
||
|
|
applicationDate: "2024-03-01",
|
||
|
|
lastUpdated: "2024-03-19",
|
||
|
|
department: "Design",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 3,
|
||
|
|
name: "Michael Brown",
|
||
|
|
email: "m.brown@email.com",
|
||
|
|
role: "Manager",
|
||
|
|
status:
|
||
|
|
"<span style='background-color: #ef4444; color: white; padding: 4px 12px; border-radius: 20px; font-size: 14px;'><strong>Suspended</strong></span>",
|
||
|
|
applicationDate: "2024-01-10",
|
||
|
|
lastUpdated: "2024-03-18",
|
||
|
|
department: "Operations",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 4,
|
||
|
|
name: "Sarah Davis",
|
||
|
|
email: "sarah.d@email.com",
|
||
|
|
role: "Developer",
|
||
|
|
status:
|
||
|
|
"<span style='background-color: #22c55e; color: white; padding: 4px 12px; border-radius: 20px; font-size: 14px;'><strong>Active</strong></span>",
|
||
|
|
applicationDate: "2024-02-20",
|
||
|
|
lastUpdated: "2024-03-17",
|
||
|
|
department: "Engineering",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 5,
|
||
|
|
name: "James Wilson",
|
||
|
|
email: "j.wilson@email.com",
|
||
|
|
role: "Analyst",
|
||
|
|
status:
|
||
|
|
"<span style='background-color: #3b82f6; color: white; padding: 4px 12px; border-radius: 20px; font-size: 14px;'><strong>Reviewing</strong></span>",
|
||
|
|
applicationDate: "2024-03-05",
|
||
|
|
lastUpdated: "2024-03-16",
|
||
|
|
department: "Analytics",
|
||
|
|
},
|
||
|
|
];
|