diff --git a/react/class_components/class_based_components.md b/react/class_components/class_based_components.md index b8e0b2ef333..a04665d70bf 100644 --- a/react/class_components/class_based_components.md +++ b/react/class_components/class_based_components.md @@ -277,10 +277,10 @@ For the purposes of this assignment, we take the simple class-based component th 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. -- How do props get used in a class-based component? -- How does JSX get displayed? -- How do we deal with state in a class-based component? -- How do you restore the context of `this` in a method? +- [How do props get used in a class-based component?](#the-use-of-a-constructor-and-props) +- [How does JSX get displayed?](#how-you-can-render-jsx) +- [How do we deal with state in a class-based component?](#how-to-use-state-and-manage-context) +- [How do you restore the context of `this` in a method?](#the-importance-of-bind) ### Additional resources