diff options
Diffstat (limited to 'sandbox/TestIvanLjubisavljevic/frontend/src/app/page-not-found/page-not-found.component.ts')
-rwxr-xr-x | sandbox/TestIvanLjubisavljevic/frontend/src/app/page-not-found/page-not-found.component.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sandbox/TestIvanLjubisavljevic/frontend/src/app/page-not-found/page-not-found.component.ts b/sandbox/TestIvanLjubisavljevic/frontend/src/app/page-not-found/page-not-found.component.ts new file mode 100755 index 00000000..8aeb7485 --- /dev/null +++ b/sandbox/TestIvanLjubisavljevic/frontend/src/app/page-not-found/page-not-found.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-page-not-found', + templateUrl: './page-not-found.component.html', + styleUrls: ['./page-not-found.component.css'] +}) +export class PageNotFoundComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} |