Skip to content

Instantly share code, notes, and snippets.

View glatrofa's full-sized avatar
📚

Giuseppe Latrofa glatrofa

📚
View GitHub Profile
@glatrofa
glatrofa / app.module.ts
Last active July 2, 2020 10:58 — forked from adrianolsk/page.component.ts
Angular Routing with Hashtag to page anchor
// add imports
import { RouterModule, Routes } from '@angular/router';
// declare here all your routes
const routes: Routes = [
{ path: 'page', component: PageComponent },
// other route paths
];
// add this to @NgModule imports: