mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-15 10:13:15 -05:00
13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-not-found',
|
|
templateUrl: './not-found.component.html',
|
|
styleUrls: ['./not-found.component.scss'],
|
|
})
|
|
export class NotFoundComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|