2021-05-19 13:40:29 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {RouterModule} from "@angular/router";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {MiningComponent} from "./mining.component";
|
|
|
|
import {PageContentModule} from "../../openaireLibrary/dashboard/sharedComponents/page-content/page-content.module";
|
|
|
|
|
2019-03-04 15:32:58 +01:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2021-05-19 13:40:29 +02:00
|
|
|
CommonModule,
|
|
|
|
RouterModule.forChild([
|
|
|
|
{
|
|
|
|
path: '', component: MiningComponent, children: [
|
2021-07-14 14:04:42 +02:00
|
|
|
{path: '', loadChildren: () => import('./mining-routing.module').then(m => m.MiningRoutingModule)}
|
2021-05-19 13:40:29 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]),
|
|
|
|
PageContentModule,
|
|
|
|
],
|
|
|
|
declarations: [MiningComponent],
|
|
|
|
exports: [MiningComponent]
|
2019-03-04 15:32:58 +01:00
|
|
|
})
|
2021-05-19 13:40:29 +02:00
|
|
|
export class MiningModule {
|
|
|
|
}
|