mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
feat: add inbox ui
This commit is contained in:
@ -15,6 +15,7 @@ const EmbedMemo = lazy(() => import("@/pages/EmbedMemo"));
|
||||
const Archived = lazy(() => import("@/pages/Archived"));
|
||||
const DailyReview = lazy(() => import("@/pages/DailyReview"));
|
||||
const Resources = lazy(() => import("@/pages/Resources"));
|
||||
const Inboxes = lazy(() => import("@/pages/Inboxes"));
|
||||
const Setting = lazy(() => import("@/pages/Setting"));
|
||||
const NotFound = lazy(() => import("@/pages/NotFound"));
|
||||
|
||||
@ -83,6 +84,11 @@ const router = createBrowserRouter([
|
||||
element: <Resources />,
|
||||
loader: () => initialUserStateLoader(),
|
||||
},
|
||||
{
|
||||
path: "inbox",
|
||||
element: <Inboxes />,
|
||||
loader: () => initialUserStateLoader(),
|
||||
},
|
||||
{
|
||||
path: "archived",
|
||||
element: <Archived />,
|
||||
|
Reference in New Issue
Block a user