# Step 2.4 - React Context (Exercise) [Lessons](../) | [Exercise](./exercise/) | [Demo](./demo/) If you don't already have the app running, start it by running `npm start` from the root of the `frontend-bootcamp` folder. Click the "exercise" link under day 2 step 4 to see results. ## TodoContext.Provider Component 1. Open `exercise/src/components/TodoApp.tsx` 2. Uncomment the missing functions inside the value prop ## TodoFooter, Context inside Functional Component 1. Open `exercise/src/components/TodoFooter.tsx` 2. Replace the two constants by using useContext(TodoContext) ## TodoHeader, Context inside Class Component 1. Open `exercise/src/components/TodoHeader.tsx` 2. Replace the `onAdd` with a real implementation using the `this.context` object 3. Replace the `onFilter` with a real implementation using the `this.context` object 4. Be sure to set the `contextType` of the TodoHeader component