import React from 'react'; import PropTypes from 'prop-types'; export const CustomPaginationTotal = ({ from, to, size }) => ( Showing { from } to { to } of { size } Results ); CustomPaginationTotal.propTypes = { from: PropTypes.number, to: PropTypes.number, size: PropTypes.number, };