Running Prettier in Project
This commit is contained in:
@@ -7,27 +7,22 @@ import { CallbackComponent } from './header/header-popup/callback/callback.compo
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
redirectTo: '/home',
|
||||
pathMatch: 'full'
|
||||
redirectTo: '/home',
|
||||
pathMatch: 'full',
|
||||
},
|
||||
{
|
||||
path: 'home',
|
||||
component: HomeComponent
|
||||
component: HomeComponent,
|
||||
},
|
||||
{
|
||||
path: 'callback',
|
||||
component: CallbackComponent
|
||||
}
|
||||
]
|
||||
component: CallbackComponent,
|
||||
},
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
declarations: [],
|
||||
imports: [
|
||||
CommonModule,
|
||||
RouterModule.forRoot(routes)
|
||||
],
|
||||
exports: [
|
||||
RouterModule
|
||||
]
|
||||
imports: [CommonModule, RouterModule.forRoot(routes)],
|
||||
exports: [RouterModule],
|
||||
})
|
||||
export class AppRouterModule { }
|
||||
export class AppRouterModule {}
|
||||
|
||||
Reference in New Issue
Block a user