
This commit updates the docs examples to be compatible with the `import-spacing` tslint rule. This is in preparation of updating the docs examples `tslint.json` to match the one generated for new Angular CLI apps in a future commit. PR Close #38143
16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { ContactComponent } from './contact.component';
|
|
|
|
const routes = [
|
|
{ path: 'contact', component: ContactComponent}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [ RouterModule.forChild(routes) ],
|
|
exports: [ RouterModule ]
|
|
})
|
|
export class ContactRoutingModule {}
|
|
|