13 lines
974 B
JavaScript
13 lines
974 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var tslib_1 = require("tslib");
|
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
var application_1 = tslib_1.__importDefault(require("../../../../components/config/application"));
|
|
var pageHeader_1 = tslib_1.__importDefault(require("../../../../components/common/pageHeader"));
|
|
var web_module_less_1 = tslib_1.__importDefault(require("./web.module.less"));
|
|
function render(props) {
|
|
var _a = props.data, oakId = _a.oakId, config = _a.config, name = _a.name, type = _a.type;
|
|
return ((0, jsx_runtime_1.jsx)(pageHeader_1.default, tslib_1.__assign({ showBack: true, title: "\u5E94\u7528\u914D\u7F6E" }, { children: (0, jsx_runtime_1.jsx)("div", tslib_1.__assign({ className: web_module_less_1.default.container }, { children: (0, jsx_runtime_1.jsx)(application_1.default, { type: type, config: config, entity: "application", entityId: oakId, name: name }) })) })));
|
|
}
|
|
exports.default = render;
|