关于react hooks无法使用,一直报错
想学习react hooks,就跟着官方的第一个列子写了起来,但是却没法运行;
我已经安装了"react": "^16.7.0-alpha.0"
这个版本,官网例子是:
import React, { useState } from 'react'
function Example () {
// Declare a new state variable, which we'll call "count"
const [count, setCount] = useState(0)
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
)
}
export default Example
但是我运行的时候报错TypeError: dispatcher.useState is not a function
求大神帮解决
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
react-dom也更新到这个版本了?