'use client'; import React from 'react'; import { useTranslations } from 'next-intl'; import { useHistory } from '../lib/useHistory'; import { HistoryTable } from './historyTable'; import { Pagination } from './pagination'; // ─── Page Header ─────────────────────────────────────────────────────────────── const PageHeader: React.FC = () => { const t = useTranslations('HistoryPage'); return (

{t('title')}

{t('description')}

); }; // ─── HistoryPage ─────────────────────────────────────────────────────────────── export const HistoryPage = () => { const { items, status, error, refetch, currentPage, totalPages, goToPage } = useHistory(); return (
); };