12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
sap.ui.define([
|
|
"../localService/mockserver"
|
|
], (mockserver) => {
|
|
"use strict";
|
|
|
|
// initialize the mock server
|
|
mockserver.init();
|
|
|
|
// initialize the embedded component on the HTML page
|
|
sap.ui.require(["sap/ui/core/ComponentSupport"]);
|
|
});
|