Rahul Kumar

Rahul Kumar

  • NA
  • 43
  • 9k

Remove Header and Footer from any page where we don't need

May 22 2018 5:32 AM
I have created Routes in Module.ts
  1. const routes: Routes = [  
  2. {  
  3. path: "",  
  4. children: [  
  5. { path: "", component: HomeComponent },  
  6. { path: "contact", component: ContactComponent },  
  7. { path: "support", component: SupportComponent },  
  8. { path: "event", component: EventComponent },  
  9. { path: "what-we-do", component: WhatWeDoComponent },  
  10. //{ path: "school-adds", component: SchoolAddsComponent },  
  11. ],  
  12. component: HomeComponent}, // not found handler  
  13. { path: "school-adds", component: SchoolAddsComponent },  
  14. { path: "**", redirectTo: "/", pathMatch: "full" },  
  15. ];  
please tell me any best way to hide header and footer

Answers (2)