Files
agent/web/src/main-app/main-app.component.ts
2017-02-12 22:39:07 +01:00

13 lines
341 B
TypeScript

import { Component, ViewEncapsulation } from '@angular/core';
@Component({
selector: 'main-app',
templateUrl: './main-app.component.html',
styleUrls: [
'../shared/main-app/main-app.component.scss',
'./main-app.component.scss'
],
encapsulation: ViewEncapsulation.None
})
export class MainAppComponent { }