feat: common paginator component (#9)

This commit is contained in:
patak 2022-11-16 17:11:08 +01:00 committed by GitHub
parent 7969b53747
commit e61f909f31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 49 additions and 42 deletions

View file

@ -15,3 +15,5 @@ export interface UserLogin {
token: string
account?: AccountCredentials
}
export type PaginatorState = 'ready' | 'loading' | 'done'