Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions steps/09/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ We'll replace the view with a UI component. To do this, we use a control called

- For better loading performance, we set the `async` property to `true`. This allows the component and its dependencies to load in the background without blocking other parts of the application.

Finally, we position our newly created ComponentController control within the HTML element with the id `content`.
Finally, we position our newly created `ComponentContainer` control within the HTML element with the id `content`.

```ts
import ComponentContainer from "sap/ui/core/ComponentContainer";
Expand All @@ -151,7 +151,7 @@ new ComponentContainer({

- Together with all UI assets of the app, the component is located in the `webapp` folder.

 
- The `index.html` file is located in the `webapp` folder if it is used productively.

***

Expand Down
Loading