Skip to content

Commit cee69ea

Browse files
committed
Add dynamic components interview questions and answers
1 parent 768e83e commit cee69ea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
|56| [How to transfer components to custom elements?](#how-to-transfer-components-to-custom-elements)|
6565
|57| [What are the mapping rules between Angular component and custom element?](#what-are-the-mapping-rules-between-angular-component-and-custom-element)|
6666
|58| [How do you define typings for custom elements?](#how-do-you-define-typings-for-custom-elements)|
67+
|59| [What are dynamic components?](#what-are-dynamic-components)|
6768

6869
1. ### What is Angular Framework?
6970

@@ -866,4 +867,6 @@
866867
container.message = 'Welcome to Angular elements!';
867868
container.message = true; // <-- ERROR: TypeScript knows this should be a string.
868869
container.greet = 'News'; // <-- ERROR: TypeScript knows there is no `greet` property on `container`.
869-
```
870+
```
871+
59. ### What are dynamic components?
872+
Dynamic components are the components in which components location in the application is not defined at build time.i.e, They are not used in any angular template. But the component is instantiated and placed in the application at runtime.

0 commit comments

Comments
 (0)