import { getAllElections, getHistoricalPerformance } from '@/lib/db/history';
import { HistoryClient } from '@/modules/history/component/HistoryClient';

const HistoryPage = () => {
  const elections = getAllElections();
  const historicalPerformance = getHistoricalPerformance();

  return <HistoryClient elections={elections} historicalPerformance={historicalPerformance} />;
};

export default HistoryPage;
