X-Git-Url: https://juplo.de/gitweb/?p=examples%2Fangular-tutorial;a=blobdiff_plain;f=src%2Fapp%2Ftop-bar%2Ftop-bar.component.ts;fp=src%2Fapp%2Ftop-bar%2Ftop-bar.component.ts;h=e531b08799150b36832fa771fe909dc20d6fc3cb;hp=0000000000000000000000000000000000000000;hb=7b128c4886ec1dbe8c9f036b447ce2a2697b61a9;hpb=da3794738804e7a3b2d59c6609f5f3ddf1a6bbc7 diff --git a/src/app/top-bar/top-bar.component.ts b/src/app/top-bar/top-bar.component.ts new file mode 100644 index 0000000..e531b08 --- /dev/null +++ b/src/app/top-bar/top-bar.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-top-bar', + templateUrl: './top-bar.component.html', + styleUrls: ['./top-bar.component.css'] +}) +export class TopBarComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}