๐Ÿ“ฆ ionic-team / ionic-framework

๐Ÿ“„ app-standalone.component.ts ยท 12 lines
1
2
3
4
5
6
7
8
9
10
11
12import { Component } from '@angular/core';
import { RouterModule } from '@angular/router';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  standalone: true,
  imports: [RouterModule]
})
export class AppStandaloneComponent {
}