Implement pagination for table user and room

This commit is contained in:
2023-11-29 16:48:24 +07:00
parent faef6758f8
commit 50e607850d
7 changed files with 32 additions and 42 deletions
+1 -14
View File
@@ -1,8 +1,5 @@
import styled from 'styled-components';
// Components
import Button from '../../commons/styles/Button';
const StyledUser = styled.main`
padding: 20px;
padding-bottom: 100px;
@@ -24,14 +21,4 @@ const StyledOperationTable = styled.div`
justify-content: flex-end;
`;
const FormBtn = styled(Button)`
width: 100%;
&:disabled,
&[disabled] {
background-color: var(--disabled-btn-color);
cursor: no-drop;
}
`;
export { StyledUser, Title, StyledOperationTable, FormBtn };
export { StyledUser, Title, StyledOperationTable };