Browse Source

Update content-projection-service.md

pull/23275/head
Fahri Gedik 11 months ago
parent
commit
87ef71e53a
  1. 3
      docs/en/framework/ui/angular/content-projection-service.md

3
docs/en/framework/ui/angular/content-projection-service.md

@ -8,12 +8,13 @@ You do not have to provide the `ContentProjectionService` at module or component
```js
import { ContentProjectionService } from '@abp/ng.core';
import { inject } from '@angular/core';
@Component({
/* class metadata here */
})
class DemoComponent {
constructor(private contentProjectionService: ContentProjectionService) {}
private contentProjectionService = inject(ContentProjectionService);
}
```

Loading…
Cancel
Save