Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a11smiles/ceba51a14d3e74c53c4e0e6b2585f090 to your computer and use it in GitHub Desktop.
Save a11smiles/ceba51a14d3e74c53c4e0e6b2585f090 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
import { GoogleAnalyticsService } from '../google-analytics.service';
@Component({
template: '',
})
export class BasePageComponent implements OnInit {
constructor(protected $gaService: GoogleAnalyticsService) { }
ngOnInit() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment