Tool.js 281 B

123456789101112131415
  1. import React from 'react';
  2. export default class Tool {
  3. constructor(){
  4. }
  5. editViewNode(VS,node){
  6. console.log("You must override this function with your custom tool")
  7. }
  8. render(props) {
  9. throw new Error("You must extend this base Module and override render method!");
  10. }
  11. }