from React Docs,
const domContainer = document.querySelector('#like_button_container');
ReactDOM.render(e(LikeButton), domContainer);
there is no explanation about e of e(LikeButton) before rendering explanation. its make me confused to thaught i missed some tutorial of react tutorial
from React Docs,
const domContainer = document.querySelector('#like_button_container');
ReactDOM.render(e(LikeButton), domContainer);