1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 05:00:10 +00:00
Files
browser/libs/components/src/form-control/form-control.module.ts
2025-11-24 18:03:16 +01:00

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 {}