web-dave / ng-essential-workshop

0 stars 0 forks source link

Generate SubModules #4

Open web-dave opened 4 years ago

web-dave commented 4 years ago

Generate 2 sub Modules (about, fleet) Import the Modules into your AppModule

web-dave commented 4 years ago

generate

ng g module fleet --routing -m app.module
ng g module about --routing -m app.module

--routing prepares routing for this module -m defines the module where this module will be imported

web-dave commented 4 years ago

NEXT