Skip to content

Commit

Permalink
Merge pull request #4 from CerealKiller97/dev
Browse files Browse the repository at this point in the history
Testing NOW deployment
  • Loading branch information
Stefan Bogdanović authored Aug 30, 2019
2 parents 2dbfb97 + 1708526 commit 3d0078a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<h1>404 page</h1>
<mat-grid-list cols="1" rowHeight="100">
<mat-grid-tile>
<h1>Ooops 404 you have lost.</h1>
</mat-grid-tile>
</mat-grid-list>
5 changes: 3 additions & 2 deletions src/app/modules/errors/errors.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ErrorsComponent } from './components/errors/errors.component';
import { Routes, RouterModule } from '@angular/router';
import { MatGridListModule } from '@angular/material/grid-list';

const routes: Routes = [
{
Expand All @@ -13,7 +14,7 @@ const routes: Routes = [

@NgModule({
declarations: [ErrorsComponent],
imports: [CommonModule, RouterModule.forChild(routes)],
exports: [ErrorsComponent, RouterModule]
imports: [CommonModule, RouterModule.forChild(routes), MatGridListModule],
exports: [ErrorsComponent, RouterModule, MatGridListModule]
})
export class ErrorsModule {}

1 comment on commit 3d0078a

@vercel
Copy link

@vercel vercel bot commented on 3d0078a Aug 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.