Yvonne Priscilla
up chart
66ed0c8
'use client';
import CandidateTable from '@/components/dashboard/candidates-table';
import { ChartsSection } from '@/components/dashboard/charts-section';
import { MetricsRow } from '@/components/dashboard/metrics-row';
export default function DashboardPage() {
return (
<div>
<MetricsRow />
<ChartsSection />
<CandidateTable />
</div>
);
}