contact recoreds done

This commit is contained in:
Ken Yasue
2025-03-25 08:12:33 +01:00
parent c9751b058f
commit 42f2a30610
5 changed files with 66 additions and 22 deletions

9
src/lib/constants.ts Normal file
View File

@ -0,0 +1,9 @@
// Contact record types
export const CONTACT_TYPES = [
{ value: 'Email', label: 'Email' },
{ value: 'EmailSent', label: 'Email sent' },
{ value: 'EmailReceived', label: 'Email received' },
{ value: 'Phone', label: 'Phone' },
{ value: 'Meeting', label: 'Meeting' },
{ value: 'Other', label: 'Other' }
];