mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
16 lines
No EOL
452 B
TypeScript
16 lines
No EOL
452 B
TypeScript
import { Component } from '@angular/core';
|
|
import { NbThemeService } from '@nebular/theme';
|
|
|
|
@Component({
|
|
selector: 'ngx-material-landing',
|
|
templateUrl: './material-landing.component.html',
|
|
styleUrls: [
|
|
'./material-landing.component.scss',
|
|
'../landing-home.component.scss'
|
|
]
|
|
})
|
|
export class MaterialLandingComponent {
|
|
constructor(private themeService: NbThemeService) {
|
|
this.themeService.changeTheme('ngx-landing-material');
|
|
}
|
|
} |