Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/content/6/en/part6c.md
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ React's built-in [Context API](https://react.dev/learn/passing-data-deeply-with-

Let's now create a context in the application that stores the counter state management.

A context is created using React's [createContext](https://react.dev/reference/react/createContext) hook. Let's create the context in a file <i>src/CounterContext.jsx</i>:
A context is created using React's [createContext](https://react.dev/reference/react/createContext) factory function. Let's create the context in a file <i>src/CounterContext.jsx</i>:

```js
import { createContext } from 'react'
Expand Down