feat: iadd drawer and editor navigation, and introduce letter management hooks

This commit is contained in:
ramvignesh-b
2026-04-13 00:56:58 +05:30
parent e328ce83f9
commit ad8a73bb47
13 changed files with 601 additions and 111 deletions
+2 -3
View File
@@ -5,7 +5,6 @@ export const ROUTES = {
ACTIVATE: "/activate/:uidb64/:token",
LOGIN: "/login",
DRAWER: "/drawer",
WRITE: (public_id?: string) =>
`/quill/${public_id ? public_id : ":public_id?"}`,
READ: "/read",
WRITE: (public_id?: string) => `/quill/${public_id ? public_id : ""}`,
READ: (public_id?: string) => `/read/${public_id ? public_id : ""}`,
};