import Widget from "../../../canvas/widgets/base" class Frame extends Widget{ 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(){ return (
{this.props.children}
) } } export default Frame