Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
feat(radio): Re-export MdcFormFieldModule (#1210)
Browse files Browse the repository at this point in the history
  • Loading branch information
trimox authored Aug 15, 2018
1 parent e061e64 commit 7377d1b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/radio/radio-module.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import { NgModule } from '@angular/core';

import { MdcFormFieldModule } from '@angular-mdc/web/form-field';
import { MdcRadio } from './radio';

@NgModule({
exports: [MdcRadio],
imports: [MdcFormFieldModule],
exports: [
MdcFormFieldModule,
MdcRadio
],
declarations: [MdcRadio]
})
export class MdcRadioModule { }

0 comments on commit 7377d1b

Please sign in to comment.