landing-page.component.ts 288 B

123456789101112
  1. import {Component, OnInit} from '@angular/core';
  2. @Component({
  3. selector: 'landing-page',
  4. templateUrl: './landing-page.component.html',
  5. styleUrls: ['./landing-page.component.scss'],
  6. })
  7. export class LandingPageComponent implements OnInit {
  8. constructor() {}
  9. ngOnInit(): void {}
  10. }