26 lines
650 B
TypeScript
Raw Normal View History

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}
totalCount={0}
countPerPage={25}
handleNavigatePrevious={handleNavigatePrevious}
handleNavigateNext={handleNavigateNext}
handleCountItemsPerPageChange={handleCountItemsPerPageChange}
/>
</Container>
);
}
export default memo(TraceExplorerControls);