mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
All components, directives and pipes will now use standalone as default. Non-standalone decorators have now . PR Close #58160
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
template: '<router-outlet></router-outlet>',
|
|
standalone: false,
|
|
})
|
|
export class AppComponent {}
|