Opal-Estate-Pro/node_modules/bs-recipes/recipes/webpack.preact-hot-loader/app/js/main.js

17 lines
342 B
JavaScript
Raw Normal View History

2019-09-13 04:44:33 +02:00
import {h, render} from 'preact';
if (module.hot) {
module.hot.accept('./HelloWorld.jsx', () => requestAnimationFrame(() => {
init();
}));
}
let root;
function init() {
const HellowWorld = require('./HelloWorld.jsx').default;
root = render(<HellowWorld />, document.getElementById('preact-root'), root);
}
init();