Files
micro-frontend/ng-ttc-frontend/src/app/component/main-landing/main-landing.component.ts

19 lines
316 B
TypeScript
Raw Normal View History

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