JSFiddle - React, Tailwind, and code Playground

HTML

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

<!-- Example # 4 -->

<!-- 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({
        title: {
            text: 'Acme Widget Company'
        },
        subtitle: {
            text: 'Total Sales - 2014'
        },
        chart: {
            type: 'column'
        },
        xAxis: {
            categories: ['Sue Frost', 'Jim Stone', 'Linda Brady', 'Edward Lee'],
        },
        yAxis: {
            title: {
                text: 'US Dollars'
            }
        },
        series: [{
            name: "Domestic",
            data: [150, 900, 675, 400]
        }],
    });
});