JSFiddle - React, Tailwind, and code Playground
HTML
<!-- Getting Started with Highcharts Part I: Basic Charts -->
<!-- http://blog.kevinchisholm.com/ -->
<!-- Example # 1B -->
<!-- include the highcharts library -->
<script src="http://code.highcharts.com/highcharts.js"></script>
<!-- provide a container for the chart -->
<div id="container"></div>
JavaScript
$(function () {
$('#container').highcharts({
series: [{data: [150, 900, 675, 400]}]
});
});