(props)
| 23 | static requirements = ["tkintermapview"] |
| 24 | |
| 25 | constructor(props) { |
| 26 | super(props) |
| 27 | |
| 28 | this.droppableTags = null |
| 29 | |
| 30 | const newAttrs = removeKeyFromObject("layout", this.state.attrs) |
| 31 | |
| 32 | this.state = { |
| 33 | ...this.state, |
| 34 | widgetName: "Map viewer", |
| 35 | size: { width: 400, height: 250 }, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | // componentDidMount(){ |
| 40 | // super.componentDidMount() |
nothing calls this directly
no test coverage detected