Add useEffect dependency and remove unused import

master
Joshua Sigona 3 years ago
parent e07379b564
commit 13f29810bd
  1. 4
      src/App.js

@ -1,6 +1,6 @@
import './App.css'; import './App.css';
import React, {useState,useEffect,useRef} from 'react'; import React, {useState,useEffect,useRef} from 'react';
import ReactWindow from 'reactjs-windows' //import ReactWindow from 'reactjs-windows'
import 'reactjs-windows/dist/index.css' import 'reactjs-windows/dist/index.css'
function Col(p) { function Col(p) {
@ -135,7 +135,7 @@ function useOutsideAlerter(ref,setEdit) {
// Unbind the event listener on clean up // Unbind the event listener on clean up
document.removeEventListener("mousedown", handleClickOutside); document.removeEventListener("mousedown", handleClickOutside);
}; };
}, [ref]); }, [ref,setEdit]);
} }

Loading…
Cancel
Save