Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(steps/09/README.md): Correct term ComponentContainer and add convention #97

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 @@ -129,7 +129,7 @@ We take out the creation of the view and create a new `ComponentContainer` inste

- 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 @@ -153,7 +153,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