Files
pas/Web/src/app/pages/authentication/side-two-steps/side-two-steps.component.ts
2025-10-19 16:34:01 +00:00

19 lines
627 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();
}
}