Allow moving requests and folders to end of list

This commit is contained in:
Gregory Schier
2025-06-29 08:40:14 -07:00
parent 99975c3223
commit fa62f88fa4
3 changed files with 40 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
export enum ItemTypes {
REQUEST = 'request',
SIDEBAR = 'sidebar',
}
export type DragItem = {
id: string;
itemName: string;
};