| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1x 1x 2x 2x 1x | import { Component, ViewEncapsulation } from '@angular/core';
import { AuthInterceptorService } from './shared/interceptors/auth-interceptor.service';
@Component({
selector: 'app-root',
encapsulation: ViewEncapsulation.None,
templateUrl: './app.component.html',
styleUrls: ['./styles/index.less'],
})
export class AppComponent {
title = 'app';
hasHeader = true;
}
|