https://github.com/angular/angular
Raw File
Tip revision: a2593cbfb1d0da1b9e86f77a1800ee6c497a1aa2 authored by Kara Erickson on 08 August 2018, 19:28:40 UTC
release: cut the v7.0.0-beta.1 release
Tip revision: a2593cb
app.component.ts
import { Component } from '@angular/core';

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