aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/angular-small-apps/apps/recipes/src/app/components/page-not-found/page-not-found.component.ts
blob: 8c9e8b09ac6b8110ce713c7844f03ef05a691659 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Component, OnInit } from '@angular/core';

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

  ngOnInit(): void {}
}