JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container_for_fb_box"></div>
JavaScript
$('#container_for_fb_box').append($('<iframe>')
.attr({
'src': "http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fplatform&width=492&colorscheme=light&show_faces=false&stream=true&header=false&height=395",
'scrolling': "no",
'allowTransparency': 'true'
})
.css({'border':'none','overflow': 'hidden', 'width': '492px', 'height': '395px'})
);