Newer
Older
Website / src / app / home / home.component.ts
@lukas lukas on 23 Mar 2022 268 bytes add new angular layout
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-home',
  templateUrl: './home.component.html',
  styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}