I have my main <App/> and inside my app I'm using multiple useState hooks.
Inside my app I'm also using a component called <Component/>.
Inside this Component I'm using a couple of useEffect hooks, so there goes my question, is placing the useEffect hooks inside the Component file a good practice? If not, if you need to have a useEffect hook inside a Component. How would you accomplish that?