https://github.com/angular/angular
Raw File
Tip revision: d7133a8e4ef399abef9253d59c3182bb7cfcc271 authored by Andrew Scott on 24 February 2021, 17:36:12 UTC
release: cut the v11.2.3 release (#40981)
Tip revision: d7133a8
app.component.ts
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'cli-hello-world';
}
back to top