feat: add Projects overview data

This commit is contained in:
Stefan Imhoff
2023-05-13 19:20:20 +02:00
parent 7d8be2bf92
commit dc9bf2b618
21 changed files with 237 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
export const sortBySortKey = (a: any, b: any) => {
return b.data.sort - a.data.sort;
};