import Widget from "../../../canvas/widgets/base" import TkinterBase from "./base" class Frame extends TkinterBase{ static widgetType = "frame" constructor(props) { super(props) this.droppableTags = { exclude: ["image", "video", "media"] } this.state = { ...this.state, } } componentDidMount(){ super.componentDidMount() this.setAttrValue("styling.backgroundColor", "#EDECEC") this.setWidgetName("frame") } renderContent(){ // console.log("widget styling: ", this.state.widgetInnerStyling) return (