Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active March 2, 2017 14:14
Show Gist options
  • Save brunokrebs/2fab9a9f7b5fdec458d55a88f000dab0 to your computer and use it in GitHub Desktop.
Save brunokrebs/2fab9a9f7b5fdec458d55a88f000dab0 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { AuthService } from '../auth.service';
@Component({
selector: 'app-nav-bar',
templateUrl: './nav-bar.component.html',
styleUrls: ['./nav-bar.component.css']
})
export class NavBarComponent {
constructor(private authService: AuthService) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment