Skip to content

Commit

Permalink
feat(module:PickerView): import PickerModule and LocaleProviderModule (
Browse files Browse the repository at this point in the history
  • Loading branch information
Guoyuanqiang authored and fisherspy committed Dec 6, 2018
1 parent 2c7c73e commit f6ad4c7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions components/picker-view/picker-view.module.ts
@@ -1,10 +1,13 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PickerViewComponent } from './picker-view.component';

import { PickerModule } from '../picker/picker.module';
import { LocaleProviderModule } from '../locale-provider/locale-provider.module';
@NgModule({
imports: [
CommonModule
CommonModule,
PickerModule,
LocaleProviderModule
],
exports: [PickerViewComponent],
declarations: [PickerViewComponent]
Expand Down

0 comments on commit f6ad4c7

Please sign in to comment.