I have created Routes in Module.ts
- const routes: Routes = [
- {
- path: "",
- children: [
- { path: "", component: HomeComponent },
- { path: "contact", component: ContactComponent },
- { path: "support", component: SupportComponent },
- { path: "event", component: EventComponent },
- { path: "what-we-do", component: WhatWeDoComponent },
- //{ path: "school-adds", component: SchoolAddsComponent },
- ],
- component: HomeComponent}, // not found handler
- { path: "school-adds", component: SchoolAddsComponent },
- { path: "**", redirectTo: "/", pathMatch: "full" },
- ];
please tell me any best way to hide header and footer

Bhairab DuttPosted Jun 14, 2018, 10:20 AM
Hope its help to you . Please accepts the ans if its help.
Thanks
Vinod KakadePosted Jun 14, 2018, 7:11 AM