forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.ts
More file actions
45 lines (41 loc) · 1.13 KB
/
Copy pathapp.component.ts
File metadata and controls
45 lines (41 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import {Component, inject} from '@angular/core';
import {Router, RouterOutlet} from '@angular/router';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
imports: [RouterOutlet],
})
export class AppComponent {
readonly router = inject(Router);
}
@Component({
selector: 'empty-component',
template: ``,
})
export class EmptyComponent {
// This component is just for demonstration purposes.
// used to test Angular DevTools traversal logic when multiple applications are present.
}
@Component({
selector: 'other-app',
template: `
@defer {
<empty-component />
} @placeholder (minimum 2s) {
<b>Stuff will be loaded here</b>
}
`,
imports: [EmptyComponent],
})
export class OtherAppComponent {
// This component is just for demonstration purposes.
// used to test Angular DevTools traversal logic when multiple applications are present.
}