Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 21b8525

Browse files
committed
docs(template): change templates imports in render-strategies doc
1 parent e5b1f5f commit 21b8525

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/docs/docs/cdk/render-strategies/strategies/basic-strategies.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,12 @@ class Component {
158158
### Template
159159

160160
```ts
161-
import { LetModule } from '@rx-angular/template/let';
162-
import { ForModule } from '@rx-angular/template/for';
163-
import { PushModule } from '@rx-angular/template/push';
161+
import { LetDirective } from '@rx-angular/template/let';
162+
import { PushPipe } from '@rx-angular/template/push';
163+
import { RxFor } from '@rx-angular/template/for';
164164

165165
@Module({
166-
imports: [LetModule, ForModule, PushModule],
166+
imports: [LetDirective, PushPipe, RxFor],
167167
})
168168
class Module {}
169169
```

0 commit comments

Comments
 (0)