/*
 * Angular 2 decorators and services
 */
import {
  Component,
  OnInit,
  ViewEncapsulation
} from '@angular/core';


/*
 * App Component
 * Top Level Component
 */
@Component({
  selector: 'app',
  encapsulation: ViewEncapsulation.None,
  styleUrls: [
    './app.component.css'
  ],
  template: `  
   <h1>Core Application</h1>
  `
})


export class AppComponent implements OnInit {   
  constructor(   
  ) {
   
  }

  public ngOnInit() {  
  }
}
