mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-04 13:44:00 +01:00
16 lines
610 B
TypeScript
16 lines
610 B
TypeScript
|
import { CommonModule } from "@angular/common";
|
||
|
import { NgModule } from "@angular/core";
|
||
|
|
||
|
import { FormControlModule } from "../form-control";
|
||
|
|
||
|
import { RadioButtonComponent } from "./radio-button.component";
|
||
|
import { RadioGroupComponent } from "./radio-group.component";
|
||
|
import { RadioInputComponent } from "./radio-input.component";
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule, FormControlModule],
|
||
|
declarations: [RadioInputComponent, RadioButtonComponent, RadioGroupComponent],
|
||
|
exports: [FormControlModule, RadioInputComponent, RadioButtonComponent, RadioGroupComponent],
|
||
|
})
|
||
|
export class RadioButtonModule {}
|