19 lines
645 B
TypeScript
Executable File
19 lines
645 B
TypeScript
Executable File
import { Component } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { CoreService } from '../../../services/core.service';
|
|
import { MaterialModule } from '../../../material.module';
|
|
import { BrandingComponent } from '../../../layouts/full/vertical/sidebar/branding.component';
|
|
|
|
@Component({
|
|
selector: 'app-side-two-steps',
|
|
imports: [RouterModule, MaterialModule, BrandingComponent],
|
|
templateUrl: './side-two-steps.component.html',
|
|
})
|
|
export class AppSideTwoStepsComponent {
|
|
options: any;
|
|
|
|
constructor(private settings: CoreService) {
|
|
this.options = this.settings.getOptions();
|
|
}
|
|
}
|