19 lines
316 B
TypeScript
19 lines
316 B
TypeScript
|
|
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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|