May 2018
Intermediate to advanced
512 pages
11h 3m
English
We will start by creating a separate module file to house all our Material module imports:
$ npx ng g m material --flat -m app
src/app/material.module.tsimport { NgModule } from '@angular/core'import { CommonModule } from '@angular/common'@NgModule({ imports: [CommonModule], declarations: [],})export class MaterialModule {}
Read now
Unlock full access