feat: 耕作履歴ページ作成(#112) #177

Merged
みてるぞ merged 2 commits from feature/112 into main 2025-12-14 03:49:03 +09:00
Showing only changes of commit 89513ba72d - Show all commits
@@ -68,7 +68,7 @@ export default (({ page, totalPages, siblingCount = 4 }) => {
(p === '…')
? <span key={`dots-${ idx }`}></span>
: ((p === page)
? <span key={p} aria-current="page">{p}</span>
? <span key={p} className="font-bold" aria-current="page">{p}</span>
: <Link key={p} to={buildTo (p)}>{p}</Link>)))}
{(page < totalPages)