We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5927245 commit b3371f5Copy full SHA for b3371f5
1 file changed
src/components/HeaderBar.tsx
@@ -26,23 +26,12 @@ export const HeaderBar: FC = () => {
26
return (
27
<Container id="header-bar" data-testid="header-bar">
28
<FileName />
29
- { pdfState.paginated && pdfState.numPages > 1 && <button onClick={pdfPrevPage} >
30
- Prev Page
31
- </button>
32
- <span>
33
- {pdfState.currentPage} / {pdfState.numPages}
34
- </span>
35
- <button onClick={pdfNextPage}>
36
- Next Page
37
- </button> </>}
38
<DocumentNav />
39
</Container>
40
);
41
}
42
};
43
44
-
45
46
const Container = styled.div`
47
display: flex;
48
justify-content: flex-end;
0 commit comments