Skip to content

Commit f0814cb

Browse files
committed
test(angular): removing other references to RouterModule
1 parent 5ea8f19 commit f0814cb

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import { Component } from '@angular/core';
2-
import { RouterModule } from '@angular/router';
3-
import { IonRouterOutlet, IonApp } from '@ionic/angular/standalone';
2+
import { IonApp, IonRouterOutlet } from '@ionic/angular/standalone';
43

54
@Component({
65
selector: 'app-root-standalone',
76
templateUrl: './app.component.html',
87
standalone: true,
9-
imports: [RouterModule, IonRouterOutlet, IonApp]
8+
imports: [IonRouterOutlet, IonApp]
109
})
1110
export class AppComponent {
1211
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import { Component } from "@angular/core";
2-
import { RouterModule } from "@angular/router";
32

43
import { IonicModule } from '@ionic/angular';
54

65
@Component({
76
selector: 'app-standalone',
87
templateUrl: './standalone.component.html',
98
standalone: true,
10-
imports: [IonicModule, RouterModule]
9+
imports: [IonicModule]
1110
})
1211
export class StandaloneComponent { }

0 commit comments

Comments
 (0)