fix pages routing after refactor

This commit is contained in:
Alexander Kacheryants 2024-04-07 23:28:01 +03:00
parent 1e545721a4
commit 622b67047d

View File

@ -10,17 +10,17 @@ const routes: Routes = [
{
path: 'search',
loadChildren: () =>
import('../SearchPage/search.module').then((m) => m.SearchPageModule),
import('./SearchPage/search.module').then((m) => m.SearchPageModule),
},
{
path: 'users',
loadChildren: () =>
import('../UsersPage/users.module').then((m) => m.Tab2PageModule),
import('./UsersPage/users.module').then((m) => m.Tab2PageModule),
},
{
path: 'rent',
loadChildren: () =>
import('../RentPage/rent.module').then((m) => m.RentPageModule),
import('./RentPage/rent.module').then((m) => m.RentPageModule),
},
{
path: '',