Skip to content

Commit

Permalink
Update ai-chat.module.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
artisticlight authored Jul 30, 2024
1 parent 3a095f2 commit ba972ce
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/app/components/ai-chat/ai-chat.module.ts
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { MatSharedModule } from '@shared';

import { AiChatComponent } from './baseline-chart.component';

@NgModule({
declarations: [AiChatComponent],
imports: [
CommonModule,
MatSharedModule
],
exports: [
AiChatComponent,
]
})
export class AiChatModule { }

0 comments on commit ba972ce

Please sign in to comment.