update notification screen

This commit is contained in:
Ren Amamiya
2023-08-27 10:38:32 +07:00
parent 53227c7050
commit 963328e064
26 changed files with 275 additions and 188 deletions

View File

@@ -70,10 +70,10 @@ const router = createBrowserRouter([
},
},
{
path: 'notifications',
path: 'lodge',
async lazy() {
const { NotificationScreen } = await import('@app/notification');
return { Component: NotificationScreen };
const { LodgeScreen } = await import('@app/lodge');
return { Component: LodgeScreen };
},
},
],