https://github.com/angular/angular
Raw File
Tip revision: f8e17c83e971caf88bd422daee14da8d9c81c178 authored by Alex Rickabaugh on 16 June 2021, 23:44:25 UTC
release: cut the v12.1.0-next.6 release (#42587)
Tip revision: f8e17c8
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