We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46a87b commit 9467f4eCopy full SHA for 9467f4e
1 file changed
src/app/shared/explore/explore.module.ts
@@ -20,6 +20,7 @@ import { ThemedSearchSectionComponent } from './section-component/search-section
20
import { TextSectionComponent } from './section-component/text-section/text-section.component';
21
import { ThemedTextSectionComponent } from './section-component/text-section/themed-text-section.component';
22
import { SharedModule } from '../shared.module';
23
+import { MarkdownViewerModule } from '../markdown-viewer/markdown-viewer.module';
24
25
const COMPONENTS = [
26
BrowseSectionComponent,
@@ -42,10 +43,11 @@ const COMPONENTS = [
42
43
declarations: [
44
...COMPONENTS
45
],
- imports: [
46
- CommonModule,
47
- SharedModule
48
- ],
+ imports: [
+ CommonModule,
+ SharedModule,
49
+ MarkdownViewerModule
50
+ ],
51
exports: [
52
53
]
0 commit comments