JSFiddle - React, Tailwind, and code Playground

HTML

<!-- Getting Started with Highcharts Part I: Basic Charts -->
<!-- http://blog.kevinchisholm.com/ -->

<!-- Example # 3 -->

<!-- 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]}],
        xAxis: {
            categories: ['Sue Frost', 'Jim Stone', 'Linda Brady', 'Edward Lee']
        },
        chart: {
            type: 'column'
        }
    });
});