+
+ {isFetching ? (
+
+ ) : null}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {isShowingPageSelect ? null : (
+
+ {page} / {totalPages}
+
+ )}
+
+ {isShowingPageSelect ? (
+
+ ) : null}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {translate('TotalRecords', { totalRecords })}
+
+
+
+ );
+}
+
+export default TablePager;
diff --git a/frontend/src/Components/Table/TableRow.js b/frontend/src/Components/Table/TableRow.js
deleted file mode 100644
index c76083183..000000000
--- a/frontend/src/Components/Table/TableRow.js
+++ /dev/null
@@ -1,33 +0,0 @@
-import PropTypes from 'prop-types';
-import React from 'react';
-import styles from './TableRow.css';
-
-function TableRow(props) {
- const {
- className,
- children,
- overlayContent,
- ...otherProps
- } = props;
-
- return (
-