0.0.5 • Published 4 years ago

react-es-hot-loader v0.0.5

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

react-es-hot-loader

react-hot-loader for esmodule.
Only support FunctionComponent!!

hot

triggle while you import the same module again, e:
import Btn from 'src/components/Btn.js?t=1'
(add params to avoid cache.)

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

function Btn() {
  ...
}

export default hot(import.meta, Btn);