Skip to content

Commit

Permalink
perf(module: code-box): perf code-box open stackblitz. (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guoyuanqiang authored and fisherspy committed Apr 29, 2019
1 parent 5c77b8c commit 9c39051
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,18 +330,17 @@ import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { NgZorroAntdMobileModule, ModalServiceComponent, ToastComponent, ActionSheetComponent } from 'ng-zorro-antd-mobile';
import { NgZorroAntdMobileModule } from 'ng-zorro-antd-mobile';
import { ${this.nzComponentName} } from './app.component';
import { registerLocaleData } from '@angular/common';
import en from '@angular/common/locales/en';
registerLocaleData(en);
@NgModule({
imports: [ BrowserModule, FormsModule, HttpClientModule, ReactiveFormsModule, NgZorroAntdMobileModule.forRoot(), BrowserAnimationsModule ],
imports: [ BrowserModule, FormsModule, HttpClientModule, ReactiveFormsModule, NgZorroAntdMobileModule, BrowserAnimationsModule ],
declarations: [ ${this.nzComponentName} ],
bootstrap: [ ${this.nzComponentName} ],
entryComponents: [ModalServiceComponent, ToastComponent, ActionSheetComponent]
bootstrap: [ ${this.nzComponentName} ]
})
export class AppModule { }
`,
Expand Down

0 comments on commit 9c39051

Please sign in to comment.