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