import { Component } from '@angular/core';
import { AppInsightsService } from './app-insights.service';

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

  title = 'App Insights Demo';

  constructor(private appInsights: AppInsightsService) { }
}