Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 686 Bytes

project_104.md

File metadata and controls

27 lines (20 loc) · 686 Bytes
title permalink
Lesson 104
/project_104

Lesson 104

Modules

This Lesson's Focus

  • How to use components from one module in another module

At CoderGirl

Do On Your Own

  • Make a new NgModule
    • This will be a Knowledge Base module
  • Make a new component
    • For the Knowledge Base card we made before
  • Add the new component to the declarations of the new NgModule
  • Add the new NgModule to the imports in AppModule
  • Reference the new component in the template of AppComponent
    • This should show as the third component on the page

Home