diff --git a/README.md b/README.md
index 52ca2e6b..7a69edf2 100644
--- a/README.md
+++ b/README.md
@@ -234,28 +234,33 @@ Context is no need to build in fre core. It can be implemented in user land and
Here is an example: [use-context-selector](https://github.com/yisar/fre/blob/master/demo/src/use-context.js)
```js
-import { createContext, useContext } from 'fre/compat'
-
-const Context = createContext(0)
+const Context = createContext({
+ count1: 0,
+ count2: 0
+})
function App() {
- const [count, setCount] = useReducer(c => c + 1, 0)
+ const [count, setCount] = useState(Context.value)
return (