I am newbie in Angular, I want to implement the routes in separate component and import the same component in app.module.ts file. How do I import t
routes
app.module.ts
AppRoutes is a class so you need to instanciate it before using it:
let appRoutes = new AppRoutes();
then
... RouterModule.forRoot(appRoutes.getRoutes())