-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathdemo.module.ts
More file actions
14 lines (13 loc) · 847 Bytes
/
demo.module.ts
File metadata and controls
14 lines (13 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { JigsawDemoDescriptionModule } from "app/for-internal/description/demo-description";
import { JigsawButtonModule, JigsawHeaderModule, JigsawNumericInputModule, JigsawSwitchModule, JigsawSystemPromptModule } from "jigsaw/public_api";
import { JigsawSystemPromptBasicDemoComponent } from "./demo.component";
import { PerfectScrollbarModule } from "ngx-perfect-scrollbar";
@NgModule({
imports: [JigsawHeaderModule, CommonModule, JigsawDemoDescriptionModule, JigsawSystemPromptModule, JigsawButtonModule, PerfectScrollbarModule,
JigsawNumericInputModule, JigsawSwitchModule],
declarations: [JigsawSystemPromptBasicDemoComponent],
exports: [JigsawSystemPromptBasicDemoComponent]
})
export class JigsawSystemPromptBasicDemoModule { }