You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A: A grouping element that does not interfere with styles or layout (it's analogous to curly braces in JavaScript).
32
+
33
+
34
+
**What is `<ng-template>`?**
35
+
36
+
A: It's an Angular element for rendering HTML when using structural directives. The ng-template itself does not render to anything but a commment directly.
37
+
38
+
29
39
## Component/Directive Questions
30
40
31
41
**What is the minimum definition of a component?**
@@ -336,6 +346,10 @@ A: To inject known safe code, you can bypass sanitation (e.g. to embed an iframe
336
346
337
347
A: Complex application state management requirements, involving asynchronous requests to update state.
338
348
349
+
**What is Redux and how does it relate to an Angular app?**
350
+
351
+
A: It's a way to manage application state and improve maintainability of asynchronicity in your application by providing a single source of truth for the application state, and a unidirectional flow of data change in the application. ngrx/store is one implementation of Redux principles.
352
+
339
353
**What would be a good use case for having your own routing module?**
340
354
341
355
A: An application whose requirements imply having many routes, and potentially route guards, and child routes.
0 commit comments