Files
micro-frontend/ng-ttc-frontend/src/app/component/main-landing/main-landing.component.ts
x2Skyz 15308ababa
All checks were successful
Build Docker Image / Preparing Dependecies (push) Successful in 4s
-login guard
-caching
-budget
2025-11-19 18:30:35 +07:00

25 lines
451 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-main-landing',
standalone: false,
templateUrl: './main-landing.component.html',
styleUrls: ['./main-landing.component.css']
})
export class MainLandingComponent implements OnInit {
constructor(
private router: Router
) {}
ngOnInit() {
}
navigate(path: string) {
this.router.navigate([path]);
}
}