open-science-observatory-ui/src/app/pages/country/collaboration/software/country-collaboration-softw...

31 lines
858 B
TypeScript

import { RouterModule, Routes } from '@angular/router';
import { NgModule } from '@angular/core';
import { CountryCollaborationSoftwareComponent } from './country-collaboration-software.component';
import { CountryCollaborationSoftwareIndicatorsComponent } from './country-collaboration-software-indicators.component';
const countryCollaborationSoftwareRoutes: Routes = [
{
path: '',
component: CountryCollaborationSoftwareComponent,
children : [
{
path: '',
redirectTo: 'co-funded',
pathMatch: 'full',
},
{
path: ':indicator',
component: CountryCollaborationSoftwareIndicatorsComponent,
}
]
},
];
@NgModule ({
imports: [RouterModule.forChild(countryCollaborationSoftwareRoutes)],
exports: [RouterModule]
})
export class CountryCollaborationSoftwareRoutingModule {}