feat: Error state for paginated lists (#3766)

* Add error state for failed list loading

* Move sidebar collections to PaginatedList for improved error handling, loading, retrying etc
This commit is contained in:
Tom Moor
2022-07-16 00:11:04 +01:00
committed by GitHub
parent acabc00643
commit a16cf72b73
7 changed files with 148 additions and 93 deletions

View File

@@ -2,6 +2,7 @@ import styled from "styled-components";
const Empty = styled.p`
color: ${(props) => props.theme.textTertiary};
user-select: none;
`;
export default Empty;