1
Answer

I am trying to enable the about us button. I have added the path, I ha

Ruby Sen

Ruby Sen

2y
587
1

First is the path in my app routing module Then the home component Next is the app component Lastly the html for button creation

path in the app.routing.module.ts

     {
        path: 'about-us',
        pathMatch: 'full',
        data: { type: '', breadcrumb: '' },
        component: AboutUsComponent,
      },

    
 Run code snippetHide resultsExpand snippet
 

Answers (1)