feature: apply the sorts to the query

This commit is contained in:
Sammy Teillet
2023-04-20 16:45:07 +02:00
parent 33473aea92
commit fbd338ee7d
2 changed files with 15 additions and 4 deletions

View File

@ -10,7 +10,7 @@ type OwnProps = {
export type SortType = {
label: string;
order: string;
order: 'asc' | 'desc';
id: string;
icon?: IconProp;
};