below is my code for navigation
export class AppComponent {
router:Router
doSwipe(direction: string){
this.router.navigate(['/article']);
}
}
I am getting Cannot read property 'navigate' of undefined error.pls help to fix it