I am loading different component on route match.
{
path: '', component: MainComponent,
children: [
{
path: '',
component: ProjectComponent,
},
{
path: "business/:id",
component: BusinessComponent
},
{
path: "category/:id1/:id2",
component: CategoryComponent
},
]
}
Now I need to add search route where need to show all components as per search match.
How can I show all components(ProjectComponent, BusinessComponent & CategoryComponent) together to display search result?