argos/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents.module.ts

13 lines
384 B
TypeScript
Raw Normal View History

import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {TableOfContents} from './table-of-contents';
import {RouterModule} from '@angular/router';
@NgModule({
imports: [CommonModule, RouterModule],
declarations: [TableOfContents],
exports: [TableOfContents],
entryComponents: [TableOfContents],
})
export class TableOfContentsModule { }