import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {RouterModule} from '@angular/router'; import {E2EApp, Home} from './e2e-app/e2e-app'; import {P2PlatformModule} from '@p2/platform'; import {E2E_APP_ROUTES} from './e2e-app/routes'; @NgModule({ imports: [ BrowserModule, RouterModule.forRoot(E2E_APP_ROUTES), P2PlatformModule, ], declarations: [ E2EApp, Home, ], bootstrap: [E2EApp], }) export class E2eAppModule { }