Project

General

Profile

« Previous | Next » 

Revision 61563

Cleanup of comments

View differences:

country-open-science-routing.module.ts
1 1
import { RouterModule, Routes } from '@angular/router';
2 2
import { NgModule } from '@angular/core';
3 3
import { CountryOpenScienceComponent } from './country-open-science.component';
4
import { CountryOSPublicationsComponent } from './publications/country-os-publications.component';
5
import { CountryOSDatasetsComponent } from './datasets/country-os-datasets.component';
6
import { CountryOSSoftwareComponent } from './software/country-os-software.component';
7
import { CountryOSORPComponent } from './other-research-products/country-os-orp.component';
8 4

  
9 5

  
10 6
const continentOpenScienceRoutes: Routes = [
......
20 16
      {
21 17
        path: 'publications',
22 18
        loadChildren: () => import('./publications/country-os-publications.module').then(m => m.CountryOpenSciencePublicationsModule),
23
        // component: CountryOSPublicationsComponent,
24 19
      },
25 20
      {
26 21
        path: 'datasets',
27 22
        loadChildren: () => import('./datasets/country-os-datasets.module').then(m => m.CountryOpenScienceDatasetsModule),
28
        // component: CountryOSDatasetsComponent,
29 23
      },
30 24
      {
31 25
        path: 'software',
32 26
        loadChildren: () => import('./software/country-os-software.module').then(m => m.CountryOpenScienceSoftwareModule),
33
        // component: CountryOSSoftwareComponent,
34 27
      },
35 28
      {
36 29
        path: 'other-research-products',
37 30
        loadChildren: () => import('./other-research-products/country-os-orp.module').then(m => m.CountryOpenScienceORPModule),
38
        // component: CountryOSORPComponent,
39 31
      },
40 32
    ]
41 33
  },

Also available in: Unified diff