Private
Public Access
1
0

Initial commit: Outlook Lite code app

This commit is contained in:
2026-04-14 18:46:05 +00:00
commit 8ab452cfd4
2431 changed files with 990153 additions and 0 deletions

24
src/types/index.ts Normal file
View File

@@ -0,0 +1,24 @@
export interface Email {
id: string;
from: string;
fromName: string;
to: string;
subject: string;
body: string;
receivedAt: string;
isRead: boolean;
folder: 'inbox' | 'sent' | 'drafts' | 'trash';
}
export interface Folder {
id: string;
name: string;
icon: string;
unreadCount: number;
}
export interface UserProfile {
displayName: string;
email: string;
avatar?: string;
}