reactjsangularmeanmernng-init

Equivalent of ng-init in reactjs


I am converting my project from angular to reactjs. But I got stuck at ng-init. I don't know what is the equivalent of ng-init in reactjs in react way. Please help me, anyone, with this.


Solution

  • Use componentDidMount for class component

      componentDidMount() {
        ...
      }
    

    The componentDidMount() method runs after the component output has been rendered to the DOM.

    and use useeffect for the functional component

    useEffect(() => {
     ...
    });