mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-12 20:05:14 +08:00
12 lines
287 B
TypeScript
12 lines
287 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { CalloutComponent } from "./callout.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
exports: [CalloutComponent],
|
|
declarations: [CalloutComponent],
|
|
})
|
|
export class CalloutModule {}
|