import * as React from 'react'; import Pagination from '@mui/material/Pagination'; import Stack from '@mui/material/Stack'; import "./PaginationComponent.css" export class PaginationComponent extends React.Component { constructor(props) { super(props) this.state = { } } render() { return (
this.props.changePageHandler(event.currentTarget.textContent)} count={this.props.numberOfPages} color="primary" />
) } } export default PaginationComponent