2023-06-19 15:57:58 +03:00
|
|
|
import Controls from 'container/Controls';
|
|
|
|
|
import { memo } from 'react';
|
|
|
|
|
|
|
|
|
|
import { Container } from './styles';
|
|
|
|
|
|
|
|
|
|
function TraceExplorerControls(): JSX.Element | null {
|
|
|
|
|
const handleCountItemsPerPageChange = (): void => {};
|
|
|
|
|
const handleNavigatePrevious = (): void => {};
|
|
|
|
|
const handleNavigateNext = (): void => {};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Container>
|
|
|
|
|
<Controls
|
|
|
|
|
isLoading={false}
|
2023-06-23 21:39:59 +03:00
|
|
|
totalCount={0}
|
|
|
|
|
countPerPage={25}
|
2023-06-19 15:57:58 +03:00
|
|
|
handleNavigatePrevious={handleNavigatePrevious}
|
|
|
|
|
handleNavigateNext={handleNavigateNext}
|
|
|
|
|
handleCountItemsPerPageChange={handleCountItemsPerPageChange}
|
|
|
|
|
/>
|
|
|
|
|
</Container>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default memo(TraceExplorerControls);
|