import React from 'react'; import { useAuth } from '../contexts/AuthContext'; import { useOrg } from '../contexts/OrgContext'; import { Card } from '../components/UiKit'; const DebugEmployee: React.FC = () => { const { user } = useAuth(); const { employees, org } = useOrg(); return (
No employees found
) : ( employees.map((employee, index) => (