AERC
Adan Enrique Ramirez Cisneros
Employee Addition Form - Copy this React, Tailwind Component to your project
Can you generate a form for me with the following data, it is to add new employees export interface EmployeeDocument { id: string; name: string; url: string; uploadedAt: Date; } export interface Employee { id: string; userId: string; firstName: string; lastName: string; email: string; phone?: string; position: string; department?: string; salary: number; dateOfJoining: Date; documents?: EmployeeDocument[]; createdAt: Date; updatedAt: Date; }
Prompt
