15 lines
471 B
TypeScript
15 lines
471 B
TypeScript
import { Component } from '@angular/core'
|
|
import { RouterModule } from '@angular/router'
|
|
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, RouterModule],
|
|
})
|
|
export class NotFoundComponent {
|
|
constructor() {}
|
|
}
|