Files
beertracker/app.component.ts

10 lines
197 B
TypeScript

import { Component } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'my-app',
templateUrl: './app.component.html'
})
export class AppComponent {
title = 'Beertracker';
}