Skip to content

Commit

Permalink
Fix import statement order
Browse files Browse the repository at this point in the history
  • Loading branch information
NereusWB922 committed Jan 20, 2024
1 parent 84edbc4 commit f85bde0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/shared/page-not-found/page-not-found.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PageNotFoundComponent } from './page-not-found.component';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { PageNotFoundComponent } from './page-not-found.component';

@NgModule({
declarations: [PageNotFoundComponent],
Expand Down

0 comments on commit f85bde0

Please sign in to comment.