mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { AvatarComponent } from "./avatar.component";
|
|
|
|
@NgModule({
|
|
imports: [AvatarComponent],
|
|
exports: [AvatarComponent],
|
|
})
|
|
export class AvatarModule {}
|