Does LiveView have similar lifecycle concerns as ReactJS?

What would the analogues to ReactJS’s lifecycle events be in LiveView, if any? I’m talking along the lines of useEffect(fn) and useEffect(fn, []) and useMemo(fn) and useCallback(fn).

There are not lifecycle, but hooks, and I don’t think there is something similar in Liveview.