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:
"Active",
applicationDate: "2024-03-01",
lastUpdated: "2024-03-19",
department: "Design",
},
{
id: 3,
name: "Michael Brown",
email: "m.brown@email.com",
role: "Manager",
status:
"Suspended",
applicationDate: "2024-01-10",
lastUpdated: "2024-03-18",
department: "Operations",
},
{
id: 4,
name: "Sarah Davis",
email: "sarah.d@email.com",
role: "Developer",
status:
"Active",
applicationDate: "2024-02-20",
lastUpdated: "2024-03-17",
department: "Engineering",
},
{
id: 5,
name: "James Wilson",
email: "j.wilson@email.com",
role: "Analyst",
status:
"Reviewing",
applicationDate: "2024-03-05",
lastUpdated: "2024-03-16",
department: "Analytics",
},
];