mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { IconModule } from "../icon";
|
|
|
|
import { NoItemsComponent } from "./no-items.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, IconModule],
|
|
exports: [NoItemsComponent],
|
|
declarations: [NoItemsComponent],
|
|
})
|
|
export class NoItemsModule {}
|