mirror of
https://github.com/bitwarden/browser
synced 2026-02-09 05:00:10 +00:00
12 lines
410 B
TypeScript
12 lines
410 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { FormControlComponent } from "./form-control.component";
|
|
import { BitHintDirective } from "./hint.directive";
|
|
import { BitLabelComponent } from "./label.component";
|
|
|
|
@NgModule({
|
|
imports: [BitLabelComponent, FormControlComponent, BitHintDirective],
|
|
exports: [FormControlComponent, BitLabelComponent, BitHintDirective],
|
|
})
|
|
export class FormControlModule {}
|