mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00

Issue number: internal --------- ## What is the current behavior? There are tests apps for Angular 16, 17 and 18 ## What is the new behavior? Adds a test app for Angular 19 ## Does this introduce a breaking change? - [ ] Yes - [x] No --------- Co-authored-by: Brandy Carney <6577830+brandyscarney@users.noreply.github.com>
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forRoot(routes, { bindToComponentInputs: true })],
|
|
exports: [RouterModule]
|
|
})
|
|
export class AppRoutingModule { }
|