update notification screen

This commit is contained in:
Ren Amamiya
2023-08-27 14:46:48 +07:00
parent 963328e064
commit bf91187c1f
12 changed files with 62 additions and 37 deletions

View File

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