/** * Dashboard Components * * Exports all dashboard-related components. * * @module components/dashboard * @see Issue #53 */ export { Dashboard } from './Dashboard'; export { WelcomeHeader } from './WelcomeHeader'; export { DashboardQuickStats } from './DashboardQuickStats'; export { RecentProjects } from './RecentProjects'; export { PendingApprovals } from './PendingApprovals'; export { EmptyState } from './EmptyState'; // Re-export types export type { DashboardProps } from './Dashboard'; export type { WelcomeHeaderProps } from './WelcomeHeader'; export type { DashboardQuickStatsProps } from './DashboardQuickStats'; export type { RecentProjectsProps } from './RecentProjects'; export type { PendingApprovalsProps } from './PendingApprovals'; export type { EmptyStateProps } from './EmptyState';