React Hooks Error: Hooks can only be called inside the body of a function component

后端 未结 17 2127
旧巷少年郎
旧巷少年郎 2020-12-05 04:07

I am getting this error when using the useState hook. I have this in it\'s basic form, looking at the react docs for a reference, but am still getting this erro

17条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-05 04:19

    My issue was the following:

    I was doing: ReactDOM.render(Example(), app);

    Whereas I should have been doing: ReactDOM.render(, app);

提交回复
热议问题