@sap/generator-fiori
Version:
Create an SAPUI5 application using SAP Fiori elements or a freestyle approach
20 lines (17 loc) • 422 B
text/typescript
import BaseComponent from "<%- app.baseComponent %>";
/**
* @namespace <%- app.id %>
*/
export default class Component extends BaseComponent {
public static metadata = {
manifest: "json"
};
/**
* The component is initialized by UI5 automatically during the startup of the app and calls the init method once.
* @public
* @override
*/
//public init() : void {
// super.init();
//}
}