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&amp;width=492&amp;colorscheme=light&amp;show_faces=false&amp;stream=true&amp;header=false&amp;height=395", 
                'scrolling': "no",
                'allowTransparency': 'true'
            })
            .css({'border':'none','overflow': 'hidden', 'width': '492px', 'height': '395px'})
         );