extract ui to lib
This commit is contained in:
6
src/types/sort.ts
Normal file
6
src/types/sort.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export type SortDirection = 'asc' | 'desc';
|
||||
|
||||
export type SortState = {
|
||||
field: string;
|
||||
direction: SortDirection;
|
||||
};
|
||||
Reference in New Issue
Block a user