igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
14 lines (12 loc) • 460 B
text/typescript
import { NgModule } from '@angular/core';
import { IgxRadioGroupDirective } from './radio-group.directive';
import { IgxRadioComponent } from '../../radio/radio.component';
/**
* @hidden
* IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components
*/
({
imports: [IgxRadioGroupDirective, IgxRadioComponent],
exports: [IgxRadioGroupDirective, IgxRadioComponent]
})
export class IgxRadioModule {}