RSS Git Download  Clone
Raw Blame History
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'p3x-not-found',
  templateUrl: './not-found.component.html',
  styleUrls: ['./not-found.component.scss']
})
export class NotFoundComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}