
This PR adds a new section, tutorials, to the left navigation. It also adds a new, basic tutorial for routing. PR Close #36545
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-page-not-found',
|
|
templateUrl: './page-not-found.component.html',
|
|
styleUrls: ['./page-not-found.component.css']
|
|
})
|
|
export class PageNotFoundComponent {
|
|
|
|
}
|