paperless-ngx/src-ui/src/app/components/not-found/not-found.component.ts
2025-01-01 22:26:53 -08:00

14 lines
410 B
TypeScript

import { Component } from '@angular/core'
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { LogoComponent } from '../common/logo/logo.component'
@Component({
selector: 'pngx-not-found',
templateUrl: './not-found.component.html',
styleUrls: ['./not-found.component.scss'],
imports: [LogoComponent, NgxBootstrapIconsModule],
})
export class NotFoundComponent {
constructor() {}
}