8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
|
import { RouterModule } from '@angular/router';
|
||
|
|
||
|
import { ContactComponent } from './contact.component.3';
|
||
|
|
||
|
export const routing = RouterModule.forChild([
|
||
|
{ path: 'contact', component: ContactComponent}
|
||
|
]);
|