The react-paginate not works with display flex to show the paagination in horizontal position.
I try this JS code
<PaginationContainer>
<Pagination
previousLabel={"Previous"}
nextLabel={"Next"}
breakLabel={"..."}
pageCount={Math.trunc(count / limit) + 1}
onPageChange={handlePageClick}
/>
</PaginationContainer>
Styled-components code
export const PaginationContainer = styled.div`
display: flex;
flex-wrap: nowrap;
font-size: larger;
color: white;
`;
You should try in styled components:
and then in your components