import { FC } from 'react'; import Link from 'next/link'; import beerPostQueryResult from '@/services/BeerPost/schema/BeerPostQueryResult'; import { z } from 'zod'; import { FaArrowLeft, FaArrowRight } from 'react-icons/fa'; interface BeerCommentsPaginationBarProps { commentsPageNum: number; commentsPageCount: number; beerPost: z.infer; } const BeerCommentsPaginationBar: FC = ({ commentsPageNum, commentsPageCount, beerPost, }) => (
); export default BeerCommentsPaginationBar;