mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
12 lines
383 B
TypeScript
12 lines
383 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { FormControlComponent } from "./form-control.component";
|
|
import { BitHintComponent } from "./hint.component";
|
|
import { BitLabel } from "./label.component";
|
|
|
|
@NgModule({
|
|
imports: [BitLabel, FormControlComponent, BitHintComponent],
|
|
exports: [FormControlComponent, BitLabel, BitHintComponent],
|
|
})
|
|
export class FormControlModule {}
|