- API Client: hr.api.ts with employees, departments, contracts, leaves, leaveTypes - Types: hr.types.ts with all interfaces and enums - Hooks: useEmployees, useDepartments, useContracts, useLeaves, useLeaveTypes - Pages: EmployeesPage, EmployeeDetailPage, EmployeeFormPage, DepartmentsPage, ContractsPage, LeavesPage, LeaveRequestPage Implements frontend for MGN-010 HR module Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
297 B
TypeScript
7 lines
297 B
TypeScript
export { useEmployees } from './useEmployees';
|
|
export { useEmployee } from './useEmployee';
|
|
export { useDepartments, useJobPositions } from './useDepartments';
|
|
export { useContracts } from './useContracts';
|
|
export { useLeaves } from './useLeaves';
|
|
export { useLeaveTypes } from './useLeaveTypes';
|