Explorar el Código

use React.memo

itizawa hace 5 años
padre
commit
265bbacbee
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/client/js/components/PaginationWrapper.jsx

+ 2 - 2
src/client/js/components/PaginationWrapper.jsx

@@ -12,7 +12,7 @@ import { Pagination, PaginationItem, PaginationLink } from 'reactstrap';
  * @extends {React.Component}
  */
 
-function PaginationWrapper(props) {
+const PaginationWrapper = React.memo((props) => {
   const {
     activePage, changePage, totalItemsCount, pagingLimit, align,
   } = props;
@@ -152,7 +152,7 @@ function PaginationWrapper(props) {
     </React.Fragment>
   );
 
-}
+});
 
 PaginationWrapper.propTypes = {
   activePage: PropTypes.number.isRequired,