igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
38 lines (31 loc) • 724 B
text/typescript
import { Component } from '@angular/core';
@Component({
template: `This is a content from view component # 1`,
standalone: true
})
export class RoutingView1Component {
}
@Component({
template: `This is a content from view component # 2`,
standalone: true
})
export class RoutingView2Component {
}
@Component({
template: `This is a content from view component # 3`,
standalone: true
})
export class RoutingView3Component {
}
@Component({
template: `This is a content from view component # 4`,
standalone: true
})
export class RoutingView4Component {
}
@Component({
template: `This is a content from view component # 5`,
standalone: true
})
export class RoutingView5Component {
}