Is there any difference with these 3 useEffects
useEffect(() => {
return console.log('useEffect with undefined dep');
});
useEffect(() => {
return console.log('useEffect with empty array dep');
}, []);
useEffect(() => {
return console.log('useEffect with filled dep');
}, [filledDep]);