2016-12-13 20:44:52 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-12-13 20:35:06 -05:00
|
|
|
import {Component, ViewEncapsulation} from '@angular/core';
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-root',
|
|
|
|
templateUrl: 'app.component.html',
|
|
|
|
styleUrls: ['app.component.css'],
|
|
|
|
encapsulation: ViewEncapsulation.None
|
|
|
|
})
|
2016-12-13 20:44:52 -05:00
|
|
|
export class AppComponent {
|
|
|
|
}
|