15 lines
346 B
JavaScript
15 lines
346 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = OakComponent({
|
|
entity: function () {
|
|
var entity = this.props.entity;
|
|
return entity;
|
|
},
|
|
isList: false,
|
|
actions: function () {
|
|
var actions = this.props.actions;
|
|
return actions;
|
|
},
|
|
methods: {},
|
|
});
|