What is the correct way to initialize the state of a React component? Mark as favorite Copy Link state = { data: null } this.state = { data: null } this.setState({ data: null }) None of the above Check Answer