angular/integration/platform-server/projects/ngmodule/src/app/app.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
179 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
@Component({
selector: 'app-root',
template: '<router-outlet></router-outlet>',
standalone: false,
})
export class AppComponent {}