13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
sap.ui.define([
|
|
"sap/ui/core/ComponentContainer"
|
|
], (ComponentContainer) => {
|
|
"use strict";
|
|
|
|
new ComponentContainer({
|
|
name : "ui5.walkthrough",
|
|
settings : {
|
|
id : "walkthrough"
|
|
},
|
|
async : true
|
|
}).placeAt("content");
|
|
}); |