diff --git a/getstarted/angular.md b/getstarted/angular.md
index 3d9ed09f..c5c4c759 100644
--- a/getstarted/angular.md
+++ b/getstarted/angular.md
@@ -16,7 +16,7 @@ permalink: /indepth/development/angular.html
## Preparation
-Make sure you have [node](https://nodejs.org/) and [Angular CLI](https://cli.angular.io/) installed. `node 14.4.0` and `Angular CLI 9.1.12` are used in the example below.
+Make sure you have [node](https://nodejs.org/) and [Angular CLI](https://cli.angular.io/) installed. `node 22.14.0` and `Angular CLI 19.1.7` are used in the example below.
## Create the sample project
@@ -121,7 +121,7 @@ acquireImage() {
IfCloseSourceAfterAcquire: true,
});
})
- .catch((exp) => {
+ .catch((exp:any) => {
console.error(exp.message);
});
}
@@ -136,7 +136,104 @@ Edit the file `app.component.html` to contain nothing but the following
```
-* Try running the project.
+* Add the component to `app.component.ts` .
+
+``` typescript
+import { DwtComponent } from "./dwt/dwt.component";
+```
+
+``` typescript
+imports: [RouterOutlet, DwtComponent],
+```
+
+### Review the Complete Code
+
+* `dwt.component.html`
+
+``` html
+
+