30 lines
645 B
JavaScript
30 lines
645 B
JavaScript
|
|
export const mails = [
|
||
|
|
{
|
||
|
|
id: "6c84fb90-12c4-11e1-840d-7b25c5ee775a",
|
||
|
|
name: "William Smith",
|
||
|
|
email: "williamsmith@example.com",
|
||
|
|
subject: "Meeting Tomorrow",
|
||
|
|
text: "Hi, let's have a meeting tomorrow to discuss the project...",
|
||
|
|
date: "2023-10-22T09:00:00",
|
||
|
|
read: true,
|
||
|
|
labels: ["meeting", "work", "important"],
|
||
|
|
},
|
||
|
|
// Additional emails would go here
|
||
|
|
];
|
||
|
|
|
||
|
|
export const accounts = [
|
||
|
|
{
|
||
|
|
label: "Alicia Koch",
|
||
|
|
email: "alicia@example.com",
|
||
|
|
icon: "📧",
|
||
|
|
}
|
||
|
|
];
|
||
|
|
|
||
|
|
export const contacts = [
|
||
|
|
{
|
||
|
|
name: "Emma Johnson",
|
||
|
|
email: "emma.johnson@example.com",
|
||
|
|
},
|
||
|
|
// Additional contacts would go here
|
||
|
|
];
|