JSFiddle - React, Tailwind, and code Playground

@author 320006441

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
    <div id='babylonContainer'>
        
    </div>

JavaScript

var chart;
$(document).ready(function() {
    chart = new Highcharts.Chart({
        chart:
        {
            renderTo:'babylonContainer'
        },
        series:[
        {
             data: [
                [1352957036, 29.9],
                [1352870636, 71.5],
                [1352784236, 106.4]
            ]
        }    
    ]
    });
});