Skip to content

Commit

Permalink
docs(angular): update setup for micro frontend (#6863)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony133 committed Aug 26, 2021
1 parent 6d8fa39 commit d0e2176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/angular/guides/setup-mfe-with-angular.md
Expand Up @@ -228,15 +228,15 @@ First, add `FormsModule` to the `imports` array in your `remote-entry/entry.modu
```ts
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';

import { RemoteEntryComponent } from './entry.component';

@NgModule({
declarations: [RemoteEntryComponent],
imports: [
BrowserModule,
CommonModule,
FormsModule,
RouterModule.forChild([
{
Expand Down

1 comment on commit d0e2176

@vercel
Copy link

@vercel vercel bot commented on d0e2176 Aug 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.