yarn add react-hot-loader -D
或
npm install react-hot-loader
// .babelrc
{
"plugins": ["react-hot-loader/babel"]
}
// App.js
import { hot } from 'react-hot-loader/root';
const App = () => <div>Hello World!</div>;
export default hot(App);