Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opens links in new Tab #26490

Merged
merged 1 commit into from
Oct 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions react/class_components/component_lifecycle_methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ In this snippet, the useEffect contains the functionality of `componentDidMount`

This section contains questions for you to check your understanding of this lesson on your own. If you’re having trouble answering a question, click it and review the material it links to.

* <a class="knowledge-check-link" href="#render">What is the only required lifecycle method?</a>
* <a class="knowledge-check-link" href="#componentdidmount">What lifecycle method should you use for initial data fetching?</a>
* <a class="knowledge-check-link" href="#componentdidupdate">When you want to act upon change of the DOM, or of state, what lifecycle method would you use?</a>
* <a class="knowledge-check-link" href="#componentwillunmount">When performing cleanup actions, what lifecycle method should be used?</a>
* <a class="knowledge-check-link" href="#how-useeffect-combines-the-lifecycle-methods">How does the useEffect hook combine some of the lifecycle methods?</a>
* [What is the only required lifecycle method?](#render)
* [What lifecycle method should you use for initial data fetching?](#componentdidmount)
* [When you want to act upon change of the DOM, or of state, what lifecycle method would you use?](#componentdidupdate)
* [When performing cleanup actions, what lifecycle method should be used?](#componentwillunmount)
* [How does the useEffect hook combine some of the lifecycle methods?](#how-useeffect-combines-the-lifecycle-methods)

### Additional resources

Expand Down