So based upon my understanding, in ReactJS, when the state of a component changes the render method is re-executed again.
But what if I use a functional component and use useState() to initialize and change the state of the functional component?
Since a functional component does not have any render method what part of it is rendered again?