- import React from 'react';
- export default class Tool {
- constructor(){
- this.active = false;
- }
-
- editViewNode(CS,node){
- console.log("You must override this function with your custom tool")
- }
- render(props) {
- throw new Error("You must extend this base Module and override render method!");
- }
- }
|