
- adds initial CLI-generated app - adds material toolbar - initial (very rough) scss setup, lifted from angular/material - initial routing scaffold w/ homepage
16 lines
400 B
TypeScript
16 lines
400 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { HomePageComponent } from './home-page.component';
|
|
import { RouterModule } from '@angular/router'
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
RouterModule.forChild([
|
|
{ path: '', component: HomePageComponent }
|
|
])
|
|
],
|
|
declarations: [HomePageComponent]
|
|
})
|
|
export class HomePageModule { }
|