dbm
Version:
22 lines (16 loc) • 721 B
JavaScript
import React from "react";
import Dbm from "../../index.js";
export default class AnimatedElement extends Dbm.react.BaseObject {
_construct() {
super._construct();
let controller = this.getPropValue("controller");
controller.propertyInput("element", this.item.requireProperty("animationElement", null));
}
_renderMainElement() {
//console.log("AnimatedElement::_renderMainElement");
//console.log(this);
let controller = this.getPropValue("controller");
let children = this.getPropValue("children");
return this._createMainElement("div", {"ref": this.createRef("animationElement"), "style": controller.jsxStyle}, children);
}
}