fix pages routing after refactor
This commit is contained in:
parent
1e545721a4
commit
622b67047d
@ -10,17 +10,17 @@ const routes: Routes = [
|
|||||||
{
|
{
|
||||||
path: 'search',
|
path: 'search',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('../SearchPage/search.module').then((m) => m.SearchPageModule),
|
import('./SearchPage/search.module').then((m) => m.SearchPageModule),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'users',
|
path: 'users',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('../UsersPage/users.module').then((m) => m.Tab2PageModule),
|
import('./UsersPage/users.module').then((m) => m.Tab2PageModule),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'rent',
|
path: 'rent',
|
||||||
loadChildren: () =>
|
loadChildren: () =>
|
||||||
import('../RentPage/rent.module').then((m) => m.RentPageModule),
|
import('./RentPage/rent.module').then((m) => m.RentPageModule),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
|
Loading…
Reference in New Issue
Block a user