mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { CheckboxComponent } from "./checkbox.component";
|
|
|
|
@NgModule({
|
|
imports: [CheckboxComponent],
|
|
exports: [CheckboxComponent],
|
|
})
|
|
export class CheckboxModule {}
|