Skip to content

Commit cfd2288

Browse files
committed
fix(docs): added required module import
1 parent b0f982c commit cfd2288

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/docs/src/app/components/docs-live-example/docs-live-example-module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { PortalModule } from '@angular/cdk/portal';
2+
import { NgComponentOutlet } from '@angular/common';
23
import { NgModule } from '@angular/core';
34
import { KbqButtonModule } from '@koobiq/components/button';
45
import { KbqCodeBlockModule } from '@koobiq/components/code-block';
@@ -21,7 +22,8 @@ import { DocsLiveExample } from './docs-live-example';
2122
StackblitzButtonModule,
2223
CopyButtonModule,
2324
PortalModule,
24-
KbqCodeBlockModule
25+
KbqCodeBlockModule,
26+
NgComponentOutlet
2527
],
2628
declarations: [DocsLiveExample, DocsLiveExampleViewer, DocsExampleSource],
2729
exports: [DocsLiveExample, DocsLiveExampleViewer, DocsExampleSource]

0 commit comments

Comments
 (0)