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

Updated: 2018-Dec

New version of react-hot-loader is out now, link. Hooks is now working out of the box. Thank to the author, theKashey.

Check out this boilerplate https://github.com/ReeganExE/react-hooks-boilerplate

  • React Hooks
  • React Hot Loader
  • Webpack, Babel, ESLint Airbnb

Previous Answer:

First, make sure you installed react@next and react-dom@next.

Then check for you are using react-hot-loader or not.

In my case, disable hot loader & HMR could get it work.

See https://github.com/gaearon/react-hot-loader/issues/1088.

Quoted:

Yes. RHL is 100% not compatible with hooks. There is just a few
reasons behind it:

SFC are being converted to Class components. There is reason – to be
able to forceUpdate on HMR, as long there is no “update” method on
SFC. I am looking for other way of forcing the update (like this. So
RHL is killing SFC.

“hotReplacementRender”. RHL is trying to do React’s job, and render
the old and the new app, to merge them. So, obviously, that’s broken
now.

I am going to draft a PR, to mitigate both problems. It will work, but
not today.

There is a more proper fix, which would work – cold API

You may disable RHL for any custom type.

import { cold } from 'react-hot-loader';

cold(MyComponent);

Search for "useState/useEffect" inside component source code, and “cold” it.

Updated:

As per updated from react-hot-loader maintainer, you could try react-hot-loader@next and set the config as bellow:

import { setConfig } from 'react-hot-loader';

setConfig({
  // set this flag to support SFC if patch is not landed
  pureSFC: true
});

Thank to @loganfromlogan for the update.

Leave a Comment